celsius = float (input('Enter a degree int Celsius:'))
fahrenheit = (9/5) * celsius + 32
print ('%.1f celsius is %.1f fahrenheit' % (celsius,fahrenheit))
r , l = map(int,input('Enter the r and l of a cylinder:').split(','))
area = r ** 2 * 3.14
volume = area * l
print ('The area is ' , area)
print ('The volume is ' , volume)