/*
#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 %ld
문자
char %c
*/
/*
int main()
{
int fh;
scanf("%d",&fh);
printf("%d",fh);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char protect;
scanf("%c",&protect);
printf("%c",protect);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float blue;
scanf("%f",&blue);
printf("%f",blue);
return 0;
}
*/
#include <stdio.h>
int main()
{
int g,h;
scanf("%d %d",&g,&h);
printf("%d %d",g,h);
return 0;
}