Study/code up
[codeup] 1112 : 두 정수 출력
1nfra
2020. 5. 1. 17:21
728x90
1 2 3 4 5 6 7 8 | #include <stdio.h> int main() { int a,b; scanf("%d %d", &a,&b); printf("%d %d", a,b); } | cs |
728x90