1 int g();
2 
main()3 int main() {
4   int x = g();
5   int y = x*x;
6   return y;
7 }
8