[백준/Python]2462)최댓값

Jimin_Note·2022년 5월 14일
0

[백준/Python]

목록 보기
18/20
post-thumbnail

💾2462)최댓값


📍내 답안

b=[]
for i in range(9):
 num=int(input())
 b.append(num)
print(max(b), b.index(max(b))+1,sep='\n')
profile
Hello. I'm jimin:)

0개의 댓글