Tugas Penghancuran Standar dalam Python

x, y, z = 5, 11, 15
print(x)
print(y)
print(z)

# Output
# 5
# 11
# 15
Rajitha Amarasinghe