문 제
두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오.
입 력
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
1 2
출 력
첫째 줄에 A×B를 출력한다.
2
코 드
using System;
using System.Linq;
using static System.Console;
namespace algorithm
{
class Program
{
static void Main(string[] args)
{
int[] ab = ReadLine().Split(' ').Select(int.Parse).ToArray();
WriteLine(ab[0] * ab[1]);
}
}
}
비교코드 - 1