GF
Size: a a a
GF
GF
s🇷
d
GF
GF
d
d
GF
т
S
GF
GF
т
S
A
A
GF
py3
import random
prusrs=['комочек']
def shoot(nm):
if random.randint(1, 4)%3!=0:
return f'{nm}:alive'
elif nm in prusrs:
return f'{nm}:protected'
else:
return f'{nm}:dead'
usrs=['комочек','shabdan','abdullaev']
for user in usrs:
print(shoot(user))
комочек:alive
shabdan:alive
abdullaev:alive
GF