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