#include <iostream>
using namespace std;

void read(int &a) {
	cin >> a;
}

int main() {
	int n;
	read(n);
	cout << n << endl;
}