# -*- coding: utf-8 -*-
# collections3.py

import collections as cln

def undefined_key(): 
    return "해당 자료없음"
      
# Defining the dict 
d = cln.defaultdict(undefined_key) 
d["a"] = 1; d["b"] = 2
  
print(d["a"], d["b"], d["c"])
