#include
int main()
{ int i,a[10];
for(i=0; i<10; i++)
scanf("%d",&a[i]);
printf("%d ",a[i]);
printf("\n");
return 0;
}