Untitled

Anonymous
python
03/27/2024 2:39 AM
328 B
17
Indexable
import random
x = random.randint(1, 10)
y = random.randint(1, 10)
resultado = x + y
print(f" {x} + {y} =")
resposta = int(input())
if resposta == resultado:
    print("Parabéns você vençeu!😎")
else:
    print("Treine Mais!!!😑")
Editor is loading...
Leave a Comment