#include <stdio.h>

int f (int x)
{
  return x*x;
}

int main ()
{
  int x = 2;
  int t = 5;

  printf ("%d   %d\n", f(x), f(t));

  return 0;
}
