print('\n\t||********** Convert temperature from Celsius to Fahrenheit **********||')
c=float(input("\n\tEnter the temperature in celsius: "))
f=float((c*9)/5+32)
print('\n\tThe converted temperature in celsius is: ',f)
print('\n\t\t||********** End is here **********||')