#include <stdio.h>

int main(void) {
	// your code goes here
	int a;
	fscanf(stdin, "%d", &a);
	printf("%d", a);
	
	return 0;
}
