https://www.acmicpc.net/problem/2562
n=[]
for i in range(9):
n.append(int(input()))
print(max(n))
print(n.index(max(n))+1)
'알고리즘 > 백준' 카테고리의 다른 글
백준 3052: 나머지 (Python) (0) | 2021.08.24 |
---|---|
백준 2577: 숫자의 개수 (Python) (0) | 2021.08.24 |
백준 10951: A+B - 4 (Python) (0) | 2021.08.19 |
백준 10871: X보다 작은 수 (Python) (0) | 2021.08.19 |
백준 11021: A+B - 7 (Python) (0) | 2021.08.19 |