using System;
public class Program
{
public static void Main(string[] args)
int a, b;
Console.WriteLine("a");
Console.WriteLine("b");
string S=Console.ReadLine();
a=Convert.ToInt32(S);
S=Console.ReadLine();
b=Convert.ToInt32(S);
if(a % b==0)
Console.WriteLine("Да, одно из чисел является делителем другого" );
else Console.WriteLine("Нет, ни одно из чисел не является делителем другого");
Console.ReadKey();
}