Advertisement
fumanbest

Survival of the Biggest

Feb 2nd, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. num_list = list(map(int, input().split()))
  2. count = int(input())
  3. [num_list.remove(min(num_list)) for i in range(count)]
  4.  
  5. print(num_list)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement