print("Вхідні дані:")
a, b, c = [int(input()) for i in range(3)]
print("Вихідні дані")
print("Points: %d, %d, %d."%(a, b, c))
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
print("Вхідні дані:")
a, b, c = [int(input()) for i in range(3)]
print("Вихідні дані")
print("Points: %d, %d, %d."%(a, b, c))