0
Anyone help ?🙁
siblings = int(input()) popsicles = int(input()) if popsicles % siblings==0 print("give away") else: print("eat them yourself")
3 Antworten
+ 2
Amit Kumar try this
ur code
siblings = int(input())
popsicles = int(input())
if popsicles % siblings==0:
print("give away")
else:
print("eat them yourself")
+ 2
Your code is right but you should right syntax and semicolon in if statement.
0
Thank u for helping 🙏