+ 4
// -> to return quotient
% -> to return remainder
if popsicles % siblings == 0
+ 4
Maybe you missed the colon(:) at the end of if statement
0
Umar Khalid , need to add colon after if and condition.
if popsicles % siblings == 0:
print('giveaway')
else:
print('eat it yourself')