mycode/Baekjoon/c/1001.c
notalentprogrammer f00b19f981 20250506 baekjoon
2025-05-06 22:00:09 +09:00

12 lines
107 B
C
Executable File

#include <stdio.h>
int main() {
int a, b;
scanf("%d %d",&a, &b);
printf("%d",a-b);
return 0;
}