Instant Hacking
Learn how to program with Python

Why Abstraction Is Needed

    number = input("What is the number? ")

    floor = 0
    while floor < number:
        floor = floor+1
    floor = floor-1

    print "The floor of", number, "is", floor