mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 15:58:48 +00:00
13 lines
154 B
C++
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;
|
|
}
|