/*
#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("Hello\nWorld");
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;
}
*/
/*
정수
int %d
long long int %lld
실수
float %f
double %lf
문자
char %c
*/
/*
#include<stdio.h>
int main() {
int x; // 4 Byte > 16?
// 1 bit: 0 or 1
// 1 Byte: 8 bit: 2^8 = 256
// 4 Byte: 32 bits: 2^32 = 42.
// long long int: 8 Byte = 2^64 = 922
scanf("%d", &x);
printf("%d\n", x);
x = 10;
printf("%d %d\n", x, x);
x = x + 10;
// x + 10 = x;
// define?
// apply: =
// summation:
printf("%d\n", x);
}
*/
/*
#include <stdio.h>
int main() {
int x;
scanf("%d", &x);
printf("%d", x);
return 0;
}
*/
/*
#include <stdio.h>
int main () {
char x;
scanf("%c", &x);
printf("%c", x);
return 0;
}
*/
/*
#include <stdio.h>
int main() {
float x;
scanf("%f", &x);
printf("%f", x);
return 0;
}
*/
/*
#include <stdio.h>
int main() {
int x, y;
scanf("%d%d", &x, &y);
printf("%d %d", x, y);
return 0;
}
*/
#include <stdio.h>
int main() {
char x, y;
scanf("%c %c", &x, &y);
printf("%c %c", y, x);
return 0;
}



