알고리즘/백준
[c] 1001번 A-B 계산하기
꾸주니=^=
2023. 1. 28. 13:33
[코드]
#include <stdio.h>
int main(void){
int A, B;
scanf("%d %d",&A, &B);
printf("%d", A-B);
}