Conditionals are at the very core of every programming language. A conditional statement allows us to perform different computations or actions depending on whether a specific Boolean condition evaluates to true or false, thus making changing program flow possible.
3.1 Write an if statement
Problem
I want to write a simple if statement.