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