using System;
public class If
{
public static void Main()
bool isRaining = false;
bool haveUmbrella = false;
bool haveCar = true;
if ((isRaining && haveCar)||haveUmbrella);
Console.WriteLine("You are getting wet.");
}