using System;
public class Program
{
public static void Main()
Console.WriteLine(new Program().test(8));
}
public int test (int x)
if (x == 0)
return 0;
else
return x + test ( x - 1);