Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- participants_amt = int(input())
- participants_list = []
- for _ in range(participants_amt):
- participants_list.append(list(map(int, input().split())))
- for i in range(1, participants_amt):
- tmp = participants_list[i]
- j = i - 1
Advertisement
Add Comment
Please, Sign In to add comment