#include <iostream>
using namespace std;
// Write your struct and dynamic allocation code here
typedef struct{
int x,y,z;
}SensorData;
int main() {
int x, y, z;
cin >> x >> y >> z;
SensorData* s=new SensorData{x,y,z};
cout<<s->x<<" "<<s->y<<" "<<s->z;
delete s;
return 0;
}