if else statement

C#
a = 1
b = 2
if a < b:
  print("a is less than b") # This will run because 1 < 2
else:
  #This only runs if the condition for the if statement is not met
  print("a is greater than or equal to b")var age=20;
if (age < 18) {
	console.log("underage");
} else {
	console.log("let em in!");
}int a = 100;
int b = 100;
if (a < b){
  print("a is less than b") // This will run because 1 < 2
  }
else{
  //This only runs if the condition for the if statement is not met
  print("a is greater than or equal to b")
  }
Source

Also in C#: