#Aufgabe 4 b = input("Gib ein wert für b: ") a = input("Gib ein wert für a: ") b = int(b) a = int(a) x = 0 while x < 10: print(x*b+a) x = x + 1