using System;
public class Program
{
public static void Main()
int tmp;
bool value;
value = false;
tmp = 65;
tmp = value ? 65 : tmp = 66;
Console.WriteLine(String.Format("{0}", tmp));
}