[백준/Python] 2562번 최댓값

divele·2023년 9월 21일

백준

목록 보기
4/17


정답

a = [int(input()) for _ in range(9)]
print(max(a))
print(a.index(max(a))+1)
profile
https://solved.ac/profile/divele

0개의 댓글