using System;
public class Program
{
public static void Main()
method1(4);
method1(5);
method1(21);
// 1 2 3 5 8 13 21
bool method1(int x)
return false;
}