출제 링크 : https://www.acmicpc.net/problem/1001
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Solution
{
class Program
{
static void Main(string[] args)
{
string[] s = Console.ReadLine().Split();
Console.WriteLine(int.Parse(s[0]) - int.Parse(s[1]) );
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 1단계(8)] 1008번 : A/B (0) | 2021.08.31 |
---|---|
[Baekjoon 1단계(7)] 10998번 : AxB (0) | 2021.08.31 |
[Baekjoon 1단계(5)] 1000번 : A+B (0) | 2021.08.31 |
[Baekjoon 1단계(4)] 10172번 : 개 (0) | 2021.08.31 |
[Baekjoon 1단계(3)] 10171번 : 고양이 (0) | 2021.08.31 |