I am getting error on test 27
n = int(input())
if 0 <= n <= 100:
s1 = input().split()
s2 = input().split()
s1.extend(s2)
uniques = set(map(int, s1))
sorted_uniques = sorted(uniques)
if 0 in uniques:
if sorted_uniques == list(range(0, n + 1)):
print("I become the guy.")
else:
print("Oh, my keyboard!")
else:
if sorted_uniques == list(range(1, n + 1)):
print("I become the guy.")
else:
print("Oh, my keyboard!")
else:
print("Oh, my keyboard!")
Test 27 is :
3
1 2
2 2 3
