Run ID:94202
提交时间:2024-10-20 08:53:07
#include<iostream> using namespace std; int main(){ /** int a; char b; float c; double d; long long e; scanf("%d %c %f %lf %lld",&a,&b,&c,&d,&e); **/ int a,b; scanf("%3d%1d",&a,&b); cout<<b<<a; return 0; }