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