[BOJ] 1001 A-B
두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.
input
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
output
첫째 줄에 A-B를 출력한다.
Algorithm
\(\bf{A1}.\) [print A - B.] \(\mathtt{OUT} \leftarrow A - B\)
Codes
c
1
2
3
4
5
6
7
8
9
#include <stdio.h>
int main () {
int a, b;
scanf("%d %d",&a,&b);
printf("%d\n",a - b);
return 0;
}
python
1
2
3
4
from sys import stdin
a, b = map(int, stdin.readline().split())
print(a-b)