https://www.acmicpc.net/problem/2562
풀이
b = []
for i in range(9):
a = int(input())
b.append(a)
print(max(b))
print(b.index(max(b))+1)
'Python > Baekjoon' 카테고리의 다른 글
백준 1546번 : 평균 (0) | 2022.10.06 |
---|---|
백준 3052번 : 나머지 (0) | 2022.10.06 |
백준 10818번 : 최소, 최대 (0) | 2022.10.06 |
백준 1110번 : 더하기 사이클 (0) | 2022.10.06 |
백준 10951번 : A+B - 4 (0) | 2022.10.06 |