#include<iostream>#include<cstring>using namespace std;int main(){ char a[20],b[20]; int c; cin>>a>>b>>c; cout<<a<<" "<<b<<" "<<c<<endl; return 0; }