#include <iostream>
using namespace std;

int main() {
	float* x = new float[2]{0.0f, 180.0f};
	cout << x[0] << " " << x[1];
	return 0;
}