- 1
QuestĂŁo
Good afternoon guys! Can anyone help me with this issue? What would be the output of this code, if the user entered 5 and 4 as input? width = input() height = input() area = int(width) * int(height) print(area//9)
4 Answers
0
obviously 2
because
area = int('4') * int('5') = 4*5 = 20
now,
print(area//9)
returns 2
+ 1
You can get the answer by running the code in the code playground.
+ 1
Muito obrigado !
0
Bem-vindo