<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># height3.py

"""Demonstrate
    - use of global variable
    - local vs. global variable"""

INCHES_PER_FT = 12

def get_feet(ht_in_inches):
    """Return ht_in_inches rounded down to the nearest feet"""
    feet = ht_in_inches // INCHES_PER_FT
    return feet

input_inches = 68
answer = get_feet(input_inches)
print(answer)
</pre></body></html>