Объяснение:
V1 = float(input())
V0 = float(input())
A = float(input())
t = float(input())
S1 = V1 * t
S2 = V0 * t + A * t**2 // 2
S3 = A * t**2 // 2
print(S1, S2, S3)
Объяснение:
V1 = float(input())
V0 = float(input())
A = float(input())
t = float(input())
S1 = V1 * t
S2 = V0 * t + A * t**2 // 2
S3 = A * t**2 // 2
print(S1, S2, S3)