using System;
public class Program
{
public static void Main()
int i = 2,k=5;
if(i==2 && k==5)
Console.WriteLine("Condtion 1");
else if(i == 2)
Console.WriteLine("Condtion 2");
}