try:
a1 = int(input("Число a1: "))
d = int(input("Число d: "))
n = int(input("Число n2: "))
an = a1 + d * (n - 1)
print(an)
except ValueError:
print("Invalid input. Please enter integers for a1, d, and n.")
except Exception as e:
print(f"An unexpected error occurred: {e}")
формула: an=a1+d(n-1)
sample input 1
1
1
10
sample output
10
примечание ариф прогрессией является например след послед -6 -3 0 3 6 9 12