1long long
2mod (a, b)
3     long long a, b;
4{
5  return a % b;
6}
7
8int
9main ()
10{
11  mod (1LL, 2LL);
12  exit (0);
13}
14