Run ID:127301

提交时间:2025-07-26 20:23:17

#include<bits/stdc++.h> using namespace std; int main() { int a;//123 cin >> a; int b = a / 100; //1 int c = a / 10 % 10; //2 int d = a % 10; //3 int e = b + c + d; cout << e; return 0; }