hy30nq's blog
1014 풀이 본문
728x90
https://codeup.kr/problem.php?id=1014
답
#include <stdio.h>
int main()
{
char a,b;
scanf("%c %c", &a, &b);
printf("%c %c", b, a);
return 0;
}
728x90
https://codeup.kr/problem.php?id=1014
답
#include <stdio.h>
int main()
{
char a,b;
scanf("%c %c", &a, &b);
printf("%c %c", b, a);
return 0;
}