# Calculation and result
class color() :
RED = 5
YELLOW = 6
GREEN = 4
BLUE = 5
print ('RED = %d ' % color.RED)
print ('YELLOW = %d ' % color.YELLOW)
print ('GREEN = %d ' % color.GREEN)
print ('BLUE = %d ' % color.BLUE)
# Calculation and result
i = 2004
c = 'Year'
print ('%s %d' % (c, i))
# Calculation and result
num = 5
c = '$'
pi = 3.141
print ('Hello World')
print ('%d %c %f' % (num, c, pi))
# Calculation and result
num = int(raw_input('Enter your favorite number '))
print ('You have entered your favorite number as %d ' % num)
# Calculation and result
fahrenheit = float(raw_input('Please enter the Fahrenheit temperature '))
centigrade = float(5)/9 * (fahrenheit - 32)
print ('The temperature in Centigrade is %.2f ' % centigrade)