Untitled

Anonymous
plain_text
08/23/2023 10:00 PM
220 B
22
Indexable
x = int(input('Entre com um valor: '))
y = int(input('Entre com um valor: '))

if x > y:
  x = y
  z = x
  y = z
  while x < y:
    print(x)
    x = x + 1
Editor is loading...