# Hello World program

fname = input('Enter your name')

print('Hello ', fname, '!', sep='')

print('Hello', fname, end='')
print('!')

heightinches = input('Enter your height in inches')

feet = int(heightinches) // 12

print('You are at least', feet, 'feet tall.')

temper = input('What is your body temperature?')

newtemp = float(temper) + 10

print('If you were 10 degree hotter you would have a temp of', newtemp)

# Functions: print, input, int, float
# Types: str, int, float, bool
# + for strings is concatenation
# + for numbers (float or int) is addition
# // is integer division (truncated division)
# / is floating point division
