본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 11295번 Exercising

by 현장 2022. 12. 10.

-Code

t = 1
while 1:
    l = int(input())
    if l == 0:
        break

    n = int(input())
    print(f"User {t}")
    for _ in range(n):
        w = int(input())
        print("%.5f" % (w * l / 100000))
    t += 1