Start: Nov, 12, 2017 10:00:00
2017秋Python程序设计基础培训第二次作业
End: Nov, 19, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: C
Result: Accepted
Time: 102ms
Memory: 24300kB
Author: kh1290008
In contest: 1122

a=[]
while True:
    s=int(input())
    a.append(s)
    if s==0:
        break
n=len(a)
for i in range(0,n):
    if a[i]!=0:
        h=100*0.7**a[i]
        print('%.2f'%h)
    i+=1