0
Why I get no output on this?
siblings = int(input()) popsicles = int(input()) #your code goes here def give (a,b): if b%a == 0: return ("give away") else: return ("eat them yourself") give(siblings , popsicles )
3 Answers
+ 2
The code has no print statement.
+ 1
Edgar Lindo
def give (a,b):
if b%a == 0:
return ("give away")
else:
return ("eat them yourself")
siblings = int(input())
popsicles = int(input())
print(give(siblings , popsicles ))
Brian đŻ
+ 1
Of course... thanks..