7 lines
100 B
Python
7 lines
100 B
Python
|
from random import randint
|
||
|
de = randint(0, 10)
|
||
|
if de > 8:
|
||
|
print(gagné!)
|
||
|
else:
|
||
|
print(perdu)
|