#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;
// Write your dynamic allocation logic here
struct SensorData* sd = new SensorData;
sd->x = x;
sd->y = y;
sd->z = z;
printf("%d %d %d\n", sd->x, sd->y, sd->z);
delete sd;
return 0;
}