#!/usr/bin/python
import cgitb,cgi,string
cgitb.enable()

print("Content-Type: text/html\n\n")
form=cgi.FieldStorage()
valor=float(form.getvalue('valor'))

print("Valor= ")
print(valor)
x=str(type(valor))
y=x.replace("<","")
print(y)
