• + 0 comments

    Working Python Solution : n = int(input()) d = dict(input().split() for i in range(n)) while True: try: p = str(input()) if p not in d: print("Not found") else: print(p+"="+d[p]) except: break