You are on page 1of 1

Cylinder volume

from math import pi

r = int(input('radius?'))
h = int(input('height?'))

a = pi* r**2
print ('is er ruimte in het stopcontact =', a*h, 'nee')

You might also like