using System;
namespace myProgram {
public class Program {
public static void Main(String[] args) {
int a = 10 != 5 ? 3 : 5;
Console.WriteLine(a);
}