This is the solution of this problem in python: position=0highest=0for i in range(1,101): N=int(input()) if(N>=highest): highest=N position=iprint(highest)print(position)
No comments