Run ID:113695
提交时间:2025-03-16 12:58:01
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,g; cin>>a; b=a/10; c=a%10; d=b/10; e=d%10; f=b%10; g=d/12; cout<<c<<g<<e<<f; return 0; }