Header Ads

Header ADS

1080.Highest and Position

This is the solution of this problem in python:

position=0
highest=0
for i in range(1,101):
    N=int(input())
    if(N>=highest):
        highest=N
        position=i
print(highest)
print(position)

No comments

Powered by Blogger.