top of page

게시판 게시물

3108
2020년 1월 08일
In 소스 코드 제출
/* #include <stdio.h> int main() { printf("Hello"); return 0; } */ /* #include <stdio.h> int main() { printf("\'Hello\'"); return 0; } */ /* #include <stdio.h> int main() { printf("\"Hello World\""); return 0; } */ /* #include <stdio.h> int main() { printf("\"!@#$%^&*()\""); return 0; } */ /* #include <stdio.h> int main() { printf("\"C:\\Download\\hello.cpp\""); return 0; } */ /* #include <stdio.h> int main() { int n; scanf("%d",&n); printf("%d",n); return 0; } */ #include <stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d %d",a,b); return 0; }
0
0
1

3108

더보기
bottom of page