Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- numbers = list(map(int,input().split()))
- num = int(input())
- for i in range(num):
- numbers.remove(min(numbers))
- print(', '.join(map(str,numbers)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement