Написать программу(линейный алгоритм) в пайтоне или блокноте.Вычислить суммы четырех переменных А, В, С, D
a, b, c, d = float(input()), float(input()), float(input()), float(input())
sum = a + b + c + d
print(sum)
# Короче:
print(float(input()) + float(input()) + float(input()) + float(input()))