PY
py
1
2
3
4
5
6
7
siblings = int(input())
popsicles = int(input())
if siblings % 2 == 0 and popsicles % 2 == 0:
print("give away")
elif siblings % 2 != 0 or popsicles % 2 != 0:
print("eat them yourself")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run