#include using namespace std; typedef long long ll; typedef pair pii; typedef vector vi; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; cout << n << "\n"; return 0; }