Advertisement
Spocoman

06. Survival of the Biggest

Jan 23rd, 2022
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. numbers = list(map(int,input().split()))
  2. num = int(input())
  3.  
  4. for i in range(num):
  5.     numbers.remove(min(numbers))
  6.  
  7. print(', '.join(map(str,numbers)))
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement