We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
termo = int(input("Termo: ")) r = int(input("Razão: ")) max = int(input("Número: ")) result = termo print("-" * 10) while result != (termo + ( r * max )): print(f"{result} → ", end = "") result += r print("FIM") print("-" * 10)