mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
9 lines
111 B
C++
9 lines
111 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
cin >> a;
|
|
cout <<a%10<<a/10;
|
|
return 0;
|
|
}
|