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