// Needed on windows, not on linux - either put it here
// or _USE_MATH_DEFINES in VS2019 can be added to the project properties/c c++/preprocessor
//
// #define _USE_MATH_DEFINES
#include <stdio.h>
#include <math.h>

int main()
{
	printf("%f",M_PI);
}
