# @dvoiss:
# https://g...content-available-to-author-only...b.com/3347094
# For the reddit daily programmer challenge
# Challenge: http://w...content-available-to-author-only...t.com/r/dailyprogrammer/comments/y5svk/8132012_challenge_88_intermediate_printing_out_a/
# Solution: http://w...content-available-to-author-only...t.com/r/dailyprogrammer/comments/y5svk/8132012_challenge_88_intermediate_printing_out_a/c5soy7s
import calendar
separator_string = '+' + '-'*20 + '+'
def print_cal(month, year):
month_days = [ '' if i == 0 else str(i) for i in calendar.Calendar(0).itermonthdays(year, month) ]
print separator_string + '\n|' + str.center( calendar.month_name[month], 20 ) + '|\n' + separator_string
print '|' + "".join(['{' + str(i) + ':<2}|' for i in range(0, 7) ]).format(*map(lambda x: x[0] + ' ', calendar.day_abbr))
print separator_string
print "".join([('|{' if j % 7 == 0 else '{') + str(i + j + (6 * i)) + ':<2}|'
+ ('\n' if j % 7 == 6 and i != (len(month_days) / 7 - 1) else '') for i in range(0, len(month_days) / 7) for j in range(0, 7)]).format(*month_days)
print separator_string
input = map(lambda x: int(x), raw_input().split(' '))
print_cal( input[0], input[1] )
IyBAZHZvaXNzOgojIGh0dHBzOi8vZy4uLmNvbnRlbnQtYXZhaWxhYmxlLXRvLWF1dGhvci1vbmx5Li4uYi5jb20vMzM0NzA5NAoKIyBGb3IgdGhlIHJlZGRpdCBkYWlseSBwcm9ncmFtbWVyIGNoYWxsZW5nZQoKIyBDaGFsbGVuZ2U6IGh0dHA6Ly93Li4uY29udGVudC1hdmFpbGFibGUtdG8tYXV0aG9yLW9ubHkuLi50LmNvbS9yL2RhaWx5cHJvZ3JhbW1lci9jb21tZW50cy95NXN2ay84MTMyMDEyX2NoYWxsZW5nZV84OF9pbnRlcm1lZGlhdGVfcHJpbnRpbmdfb3V0X2EvCiMgU29sdXRpb246IGh0dHA6Ly93Li4uY29udGVudC1hdmFpbGFibGUtdG8tYXV0aG9yLW9ubHkuLi50LmNvbS9yL2RhaWx5cHJvZ3JhbW1lci9jb21tZW50cy95NXN2ay84MTMyMDEyX2NoYWxsZW5nZV84OF9pbnRlcm1lZGlhdGVfcHJpbnRpbmdfb3V0X2EvYzVzb3k3cwoKaW1wb3J0IGNhbGVuZGFyCnNlcGFyYXRvcl9zdHJpbmcgPSAnKycgKyAnLScqMjAgKyAnKycKZGVmIHByaW50X2NhbChtb250aCwgeWVhcik6Cgltb250aF9kYXlzID0gWyAnJyBpZiBpID09IDAgZWxzZSBzdHIoaSkgZm9yIGkgaW4gY2FsZW5kYXIuQ2FsZW5kYXIoMCkuaXRlcm1vbnRoZGF5cyh5ZWFyLCBtb250aCkgXQoKCXByaW50IHNlcGFyYXRvcl9zdHJpbmcgKyAnXG58JyArIHN0ci5jZW50ZXIoIGNhbGVuZGFyLm1vbnRoX25hbWVbbW9udGhdLCAyMCApICsgJ3xcbicgKyBzZXBhcmF0b3Jfc3RyaW5nCglwcmludCAnfCcgKyAiIi5qb2luKFsneycgKyBzdHIoaSkgKyAnOjwyfXwnIGZvciBpIGluIHJhbmdlKDAsIDcpIF0pLmZvcm1hdCgqbWFwKGxhbWJkYSB4OiB4WzBdICsgJyAnLCBjYWxlbmRhci5kYXlfYWJicikpCglwcmludCBzZXBhcmF0b3Jfc3RyaW5nCglwcmludCAiIi5qb2luKFsoJ3x7JyBpZiBqICUgNyA9PSAwIGVsc2UgJ3snKSArIHN0cihpICsgaiArICg2ICogaSkpICsgJzo8Mn18JwoJCSsgKCdcbicgaWYgaiAlIDcgPT0gNiBhbmQgaSAhPSAobGVuKG1vbnRoX2RheXMpIC8gNyAtIDEpIGVsc2UgJycpIGZvciBpIGluIHJhbmdlKDAsIGxlbihtb250aF9kYXlzKSAvIDcpIGZvciBqIGluIHJhbmdlKDAsIDcpXSkuZm9ybWF0KCptb250aF9kYXlzKQoJcHJpbnQgc2VwYXJhdG9yX3N0cmluZwoKCmlucHV0ID0gbWFwKGxhbWJkYSB4OiBpbnQoeCksIHJhd19pbnB1dCgpLnNwbGl0KCcgJykpCnByaW50X2NhbCggaW5wdXRbMF0sIGlucHV0WzFdICk=