728x90
반응형

단순 구현 문제이다.

while 1:
    w = float(input())
    if w == -1:
        break
    print("Objects weighing %.2f on Earth will weigh %.2f on the moon." % (w, w*0.167))
728x90
반응형

+ Recent posts