0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00
OI-codes/Luogu/P1307/P1307.cpp
2021-11-21 16:36:43 +08:00

16 lines
193 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, s;
int main() {
cin >> n;
while (n) {
s = s * 10 + n % 10;
n /= 10;
}
cout << s << endl;
return 0;
}