0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 12:40:07 +00:00
2021-07-04 19:29:50 +08:00

11 lines
225 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << right << setw(8) << a << ' ' << right << setw(8) << b << ' ' << right << setw(8) << c << endl;
return 0;
}