반응형
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string input;
string[] token;
input = Console.ReadLine();
token = input.Split(' ');
int A = int.Parse(token[0]);
int B = int.Parse(token[1]);
Console.WriteLine("{0}", A*B);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 10926 (0) | 2023.04.06 |
---|---|
백준 C# 10869 (0) | 2023.04.06 |
백준 C# 1008 (0) | 2023.04.06 |
백준 C# 1001 (0) | 2023.04.06 |
백준 C# 1000 (0) | 2023.04.06 |
댓글