/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("아 위대하시고 찬란하신 DRX시여 \n 그간 서러움 다 떨쳐버리시고 다시 한번 퍼시픽을 푸른 빛으로 물들게 하소서");
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
char stack[201]={};
int top=-1;
void push(int a)
{
top++;
stack[top] = a;
}
void topf()
{
if(top==-1)
{
printf("-1\n");
}
else
{
printf("%d\n", stack[top]);
}
}
void pop()
{
if(top==-1)
{
return ;
}
top--;
}
void size()
{
printf("%d\n", top+1);
}
void empty()
{
if(top==-1)
{
printf("true\n");
}
else
{
printf("false\n");
}
}
int main()
{
int s, i, x;
char str[201]={};
scanf("%d", &s);
for(i=1; i<=s; i++)
{
scanf("%s",str);
if(str[1]=='u')
{
scanf(" %d )",&x);
push(x);
}
else if(str[0]=='t')
{
topf();
}
else if(str[0]=='p' && str[2]=='p')
{
pop();
}
else if(str[0]=='s')
{
size();
}
else if(str[0]=='e')
{
empty();
}
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
long long int s;
scanf("%lld", &s);
printf("%lld", s+1);
return 0;
}
*/
#include <stdio.h>
int main()
{
return 0;
}



