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

[백준/파이썬] 14729번 칠무해

by 현장 2024. 10. 14.

-Code

from sys import stdin

input = stdin.readline
score = sorted([float(input()) for _ in range(int(input()))])

for el in score[:7]:
    print(f"{el:.3f}")