mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 03:31:59 +00:00
parent
94f0cff74a
commit
688f92f284
8
AtCoder/ABC235/A/A.cpp
Normal file
8
AtCoder/ABC235/A/A.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user