# -*- coding: utf-8 -*-
"""
Created on Tue Jan 11 14:11:41 2022

@author: Sim
"""

a = 2/3
b = 1.234e4
c = a + b

print('결과는 {0:5.3f} 입니다.'.format(a))
print('결과는 {0:,.0f} 입니다.'.format(b))
print('결과는 {0:,.3f} 입니다.'.format(c))

for i in range(7,13): print('%03d' %(i))