+ 2
You have a box of popsicles and you want to give them all away to a group of brothers and sisters. If you have enough left in th
What's wrong? https://code.sololearn.com/crFP13mvvhp9/?ref=app
2 Antworten
+ 3
Read the condition statement again ...
Try :
siblings = int(input())
popsicles = int(input())
if popsicles%siblings == 0:
print("give away")
else:
print("eat them yourself")
+ 1
No fits