2022-03-13 19:40:00 +01:00

8 lines
185 B
Python

import sys
import math
# game loop
while True:
mountain_h = [int(input()) for i in range(8)] # represents the height of one mountain.
print(mountain_h.index(max(mountain_h)))