#include <iostream>
using namespace std;
#define SQUARE(x) (x*x)
inline int square(int x) {
return x * x;
}
int main() {
int n;
cin >> n;
// your code here: declare variables a and b, initialize with n
int a,b;
a=n;
b=n;
// your code here: call macro and inline function using ++a and ++b
int macrosquare=SQUARE(++a);
int inlinesquare=square(++b);
// your code here: print results
cout<<"Macro Square: "<<macrosquare<<endl;
cout<<"Inline Square: "<<inlinesquare<<endl;
return 0;
}