NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1113 : 바꿔서 출력하기

1nfra 2020. 5. 1. 17:22
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", b,a);
}
 
cs
728x90