0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:25:25 +00:00
OI-codes/Hydro/system_test/7/7.cpp

13 lines
154 B
C++

#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int main() {
int x;
cin >> x;
cout << x << endl;
return 0;
}