#include<iostream>
using namespace std;
struct point{
int edg;
char name[10];
};
int main()
{
point a;
cin >> a.edg >> a.name;
point b = a;
cin >> a.edg;
cout << a.edg << " " << a.name <<" " << b.edg << endl;
system("pause");
return 0;
}
#include<iostream>
using namespace std;
struct point{
int edg;
char name[10];
};
int main()
{
point a;
cin >> a.edg >> a.name;
point b = a;
cin >> a.edg;
cout << a.edg << " " << a.name <<" " << b.edg << endl;
system("pause");
return 0;
}