← Back to List
24923번: Canadians, eh? ↗
Solutions
Python 3
83 B | 83 chars
s = input() if s[-3:] == "eh?": print("Canadian!") else: print("Imposter!")