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