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