提交时间:2025-12-26 15:35:53
运行 ID: 78295
#include <iostream> #include <iomanip> int main() { int a, b, c; std::cin >> a >> b >> c; std::cout << std::right << std::setw(7) << a << std::setw(7) << b << std::setw(7) << c << std::endl; return 0; }