intSize_dict = {"short":2,"int":4,"long":8,"long long":8}
for k,v in intSize_dict.items():
    print("The size of {} is {} bytes.".format(k,v))