0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-25 08:11:59 +00:00
Baoshuo Ren 2022-01-15 20:05:29 +08:00
parent 94f0cff74a
commit 688f92f284
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

8
AtCoder/ABC235/A/A.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <cstdio>
int main() {
int a, b, c;
scanf("%1d%1d%1d", &a, &b, &c);
printf("%d\n", (a * 100 + b * 10 + c) + (b * 100 + c * 10 + a) + (c * 100 + a * 10 + b));
return 0;
}