Study/code up
[codeup] 1114 : 두 정수의 덧셈
1nfra
2020. 5. 1. 20:54
728x90
1 2 3 4 5 6 7 8 9 | #include <stdio.h> int main() { int a,b,c; scanf("%d %d", &a,&b); c = a + b; printf("%d",c); } | cs |
728x90