17
1
using System;
2
3
public class Program {
4
public static void Main() {
5
6
int x = 10;
7
int y = 20;
8
9
if (x == 10) // returns true
10
{
11
if (y == 20) // returns true
12
{
13
Console.WriteLine("Y is equal to 20");
14
}
15
}
16
}
17
}
Cached Result
True
True
False
True
False