[백준] C# : AxB (1008번)

ssu_hyun·2022년 7월 11일
0

Data Structure & Algorithm

목록 보기
22/67
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] s = Console.ReadLine().Split();
            int a = int.Parse(s[0]);
            int b = int.Parse(s[1]);
            Console.WriteLine(a * b);
        }
    }
}

0개의 댓글