#!/usr/bin/env python
####################################################################################
# This script will only work on the command line.  Will not work on the web
#
# Python 2x:
# raw_input() - is used for input of any text data
# input()     - is used for Python expressions, and is immediately evaluated
#
# Python 3x:
# input()     - is used for input of any text data
####################################################################################
print("Content-Type: text/html \n")     #http header with newline char (required)

str = input("Enter any text: ")
print(str)

str = input("Enter any number: ")
num = float(str)
print(num)