#define Sqr(x)          (x)*(x)
#define Diff(x, y)      (x)-(y)

x = Sqr(Diff(9, 5));
y = Diff(Sqr(5), Sqr(3));
