15
1
using System;
2
3
public class Program
4
{
5
6
public static void Main()
7
8
{
9
int x = 20, y = 10;
10
11
var result = x > y ? "x is greater than y" : "x is less than y";
12
13
Console.WriteLine(result);
14
}
15
}
Cached Result