/*#include <stdio.h>
char stack[210]={};
int top=0;
void push(char x)
{
top++;
stack[top]=x;
}
void pop()
{
stack[top--]=0;
}
void top()
{
if(top!=0)
{
printf("%d",stack[top]);
}
else
{
printf("-1");
}
}
void size()
{
}
void empty()
{
if(top==-1)
{
}
}
int main()
{
}*/
/*
#include <stdio.h>
int main()
{
int x,y,z,a,b,c;
char w;
scanf("%d-%d",&x,&y);
if(y/1000000==1)
{
c=19;
w='M';
}
else if(y/1000000==2)
{
c=19;
w='F';
}
else if(y/1000000==3)
{
c=20;
w='M';
}
else
{
c=20;
w='F';
}
z=x/10000;
a=(x-x/10000*10000)/100;
b=x-x/100*100;
printf("%02d%02d/%02d/%02d %c",c,z,a,b,w);
}
*/
/*
#include<stdio.h>
int main()
{
int x,y=0;
for(int i=0; i<7; i++)
{
scanf("%d",&x);
if(x%2==1)
{
y+=x;
}
}
if(y==0)
{
y=-1;
}
printf("%d",y);
}
*/
#include<stdio.h>
int main()
{
}