#include <stdio.h>

main() 
{
   int echo;

   scanf("%d", &echo);
   printf("%d\n", echo);
}