練習問題
# -*- coding: utf-8 -*- a = u'庚辛壬癸甲乙丙丁戊己' b = u'申酉戌亥子丑寅卯辰巳午未' y = int(raw_input('西暦を入力してください: ')) print '%s%s' % (a[y%len(a)], b[y%len(b)])