This commit is contained in:
2025-09-22 13:46:31 +05:00
parent 75b8c6a12b
commit 4ac1e79815
5 changed files with 79 additions and 44 deletions

View File

@@ -1,6 +1,13 @@
a = int(input()) #start
b = int(input()) #end
#!/usr/bin/env python
a = int(input())
b = 1
while b < 10:
print(f"{a} * {b} = {a*b}")
b += 1
for i in range(a, b + 1):
if i % 7 == 0:
print(i)
# Через for i можно реализовать полную таблицу умножения
#for i in range(1, 10 + 1):
# for b in range(1, 10 + 1):
# n = i * b
# print("{} * {} = {}".format(i, b, n))
# print("-=-=-=-=-")