using System;
public class Program {
public static void Main() {
int x = 10;
int y = 20;
if (x == 10) // returns true
{
if (y == 20) // returns true
Console.WriteLine("Y is equal than 20");
}