#define Pi      3.14159265358979323
#define Abs(x)  sqrt((x)*(x))
print Abs(-1.23);
print sin(Pi/2);
print cos(Pi);
