Macro Preprocessor C

#include 
#define Var1      7
#define Var2       5
#define Var3       Var1 + Var2
int main() {
    printf("The square of all the parts is %d\n",
  Var3 * Var3);
    return (0);
}