提交时间:2024-09-15 13:12:52

运行 ID: 50893

#include <iostream> #include <iomanip> int main() { int a, b, c; std::cin >> a >> b >> c; std::cout << std::setw(7) << a << " " << std::setw(7) << b << " " << std::setw(7) << c; return 0; }