#include <stdio.h>
int main()
{
int n=0;
int i=0;
int t=1;
scanf("%d",&n);
for(i=1;i<=n;i++)
t=t*i;
}
printf("%d",n);
return 0;