Study/code up
[codeup] 1038 : [기초-산술연산] 정수 두 개 입력받아 합 출력하기1
1nfra
2019. 7. 22. 20:04
728x90
1 2 3 4 5 6 7 8 9 10 | #include <stdio.h> int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a+b); return 0; } | cs |
728x90