Untitled

 avatar
unknown
python
a year ago
245 B
8
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