var v1: Int = 2;
null var v2: Int = 0;

def f1(a: Int, b: Int = 0): Int
{
  print(a, b);
  a + b + 1;
}
