from sys import stdin
print("The Python 3.9 Volume Of A Cylinder Program.")
p = 3.14
radi = 12
height = 12
volume = (radi**2) * (p) * (height)
print(p, " ", radi, " ", height)
volume_x = round(volume)
print("The Volume Of A Cylinder Is: ", volume_x)