﻿from math import *
R=float(input("Entrer R:"))
h=float(input("Entrer h:"))
S=pi*R**2
V=S*h
print("Le volume est égal à:",V)

