using System;
public class Program
{
public static void Main()
var x = false;
if (x = true)
Console.WriteLine("Oops! Assignment in conditional!");
}