my_dict = {}
my_dict["a"] = 1
my_dict["b"] = 2
my_dict["c"] = 3
print(my_dict)
print(my_dict.get("b"))
print(my_dict.get("d", "Not Found"))
