using System;
public class Program
{
public static void Main()
Console.Write(IsDivisible(3,3));
}
public static bool IsDivisible(int x, int y)
return x % y == 0;