#! /usr/bin/env python def fizzbuzz(max: int = 100) -> None: for i in range(1, max + 1): print(i) if __name__ == "__main__": fizzbuzz()