using System;
public class Program
{
public static void Main()
int x, y;
Console.WriteLine("enter number in x=");
x = int.Parse(Console.ReadLine());
Console.WriteLine("enter number in y=");
y = int.Parse(Console.ReadLine());
bool t = x % y != 0;
Console.WriteLine("fe baqe ={0}", t);
}