#!/usr/bin/env python3 l = [] while True: try: i = int(input("Eine Zahl: ")) except: break l.append(i) s = sorted(l) print(s)