Run ID:103470
提交时间:2024-12-28 17:19:08
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a,q,w,e,r,t; cin>>a; q=a%10; w=a/10%10; e=a/100%10; r=a/1000%10; t=a/10000; cout<<q<<w<<e<<r<<t<<endl; return 0; }