What should be entered to make the loop below print

55
60
65

x = 50
while (x < 65):
x = x + ____
print (x)


Answer :

Go Question: Other Questions