3 lines
100 B
Python
3 lines
100 B
Python
numero = int(input("Digite um número: "))
|
|
for i in range(11):
|
|
print(f"{numero}x{i}={numero*i}") |