0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 15:58:48 +00:00

3566. 学整数

https://xjoi.net/detail/1162326
This commit is contained in:
Baoshuo Ren 2021-11-11 10:17:30 +08:00 committed by Baoshuo Ren
parent 8fb7219215
commit fa7f8be482
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
cout << x << endl;
return 0;
}