옛날
[1d] 1001 : A-B
byungmeo
2018. 4. 2. 00:46
1 2 3 4 5 6 7 8 | #include <stdio.h> int main () { int a,b; scanf("%d %d",&a,&b); printf("%d",a-b); return 0; } | cs |