The Maximum

Report a typo

Here is a program which finds the maximum of two numbers. Guess what it will print for the variables a = 9, b = 9 and select the line of the code that will give such a result.

if a > b:
    print(a)
else:
    print(b)
Select one option from the list
___

Create a free account to access the full topic