文件目录

#include <iostream>
#include <cstdio>
#include <iomanip>
using namespace std;

int main()
{
    int a, b, c;
    cin >> a >> b >> c;
    cout << setw(8) << a << ' ';
    cout << setw(8) << b << ' '; // 默认右对齐
    cout << setw(8) << c;
    return 0;
}