fork download
  1. h=input()
  2. h2=format(h/100,'.2f')
  3. w=input()
  4. b=format(w/(h**2),'.2f')
  5.  
  6. print(h,h2,w,b,type(h),type(h2),type(w),type(b))
Success #stdin #stdout 0.05s 126528KB
stdin
159.0
57
stdout
(159.0, '1.59', 57, '0.00', <type 'float'>, <type 'str'>, <type 'int'>, <type 'str'>)