Solution 6¶ Treść zadania¶ Napisz program zgodny z poniższą specyfikacją. Specification¶ Input¶ \(n\) - liczba naturalna Output¶ Tabliczka mnożenia z zakresu \([1,n]\) Solution¶ n = int(input("Podaj liczbę naturalną: ")) for i in range(1, n + 1): for j in range(1, n + 1): print(i * j, end=" ") print() Was this page helpful? Thanks for your feedback! Thanks for your feedback!