/*
TASK:round
LANG:C
*/
#include <stdio.h>

int n;

int main()
{
scanf("%d",&n);
printf("%d\n",n);
return 0;
}