Programming (Year 12)

Conditional Statements

What is the output of the following code? python x = 5 if x > 3: print('Greater than 3') else: print('Less than or equal to 3')