출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

이번에는 백준 문제 치고는 N이나 T같은 상수를 입력하는 부분은 없엇다. 대신 정확히 9개의 숫자를 입력을 하고, 그 중에서 최댓값을 출력하고, 몇번째로 입력된 숫자인지도 출력하는 것이다.

 

import sys

num_list = []

for i in range(9):
    num = int(sys.stdin.readline())
    num_list.append(num)
    
print("%s\n%s" %(max(num_list),num_list.index(max(num_list))+1))

%s\n%s를 통해 원하는 숫자를 입력하면서, \n를 통해 줄 바꿈도 같이 한다.