v1 = int(input("V1 = "))
v2 = int(input("V2 = "))
s = int(input("S = "))
t = int(input("t = "))
s = v1 * t - v2 * t + s
print(s)
Объяснение:
v1 = int(input("V1 = "))
v2 = int(input("V2 = "))
s = int(input("S = "))
t = int(input("t = "))
s = v1 * t - v2 * t + s
print(s)
Объяснение: