Write fizzbuzz.py with a typed function fizzbuzz(n: int) -> str that returns the FizzBuzz value for a single number, and a __main__ block that prints results for 1 through 100 one per line. Include type hints on the function signature.
