Respuesta :

Answer:

The correct code is as follows:

a = 300

b = 120

if (a > b):

   print(a)

else:

   print(b)

Explanation:

The last 5 lines from the given code are not part of the program

There are 3 errors in the program and they are

(1) Indentation

The program lacks indentation from the beginning till the end

(2) if (a > b)

At the end of the if statement, the colon sign must be written before going to the next line.

The same applies to the else statement (the third error)

See answer section for corrections