a, b, d = (float(input()) for _ in range(3))
c = a + b
print(a, b, c, d, end = " ")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a, b, d = (float(input()) for _ in range(3))
c = a + b
print(a, b, c, d, end = " ")