#matheformel b = int(input("Gib ein wert für b: ")) a = int(input("Gib ein wert für a: ")) for x in range (10): y = b * x + a print(f"x = {x}, y = {y}")