Run ID:126268
提交时间:2025-07-17 15:41:27
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; int c; int d; int e; cin >> a;//1234 b = a / 100 % 10;//2 c = a / 1000;//1 d = a % 1000%10; e = a / 10 % 100%10; cout << b << c << d << e; return 0; }