#include <stdio.h>
int main(void)
{
int i = 0;
int j = 0;
scanf("%d %d", &i, &j);
printf("%d", i-j);
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1008번 A/B (C++) (0) | 2022.03.11 |
---|---|
[백준] 1003번 피보나치 함수 (파이썬) (0) | 2022.03.11 |
[백준] 1000번 A+B (C++/파이썬) (0) | 2022.03.11 |
[백준] 1010번 다리 놓기 (파이썬) (0) | 2022.03.08 |
[백준 알고리즘] 1913번 달팽이 (C++) (0) | 2021.11.09 |