zahl=input("Gib eine Zahl ein: ") print(zahl) eingabe = input("Gib etwas ein: ") neu = eingabe print("Ausgabe: ") print(neu) teil01 = "Haus" teil02 = "tier" kombi = teil01+teil02 print(kombi) b = input("Gib die Steigung ein: ") a = input("Gib den Offset ein: ") b = int(b) a = int(a) x = 0 while x < 10: print(x*b+a) x = x + 1