Как вынести из цикла for i in range (a): b= b + least_common_factor (b) Написано на python
Весь код
def least_common_factor(x):
i=2
While x%1 !=0:
i+=1
return i
a= int(input(()
b=int(input(()
for i in range (a): b= b + least_common_factor (b)
Print (b)

Rairaku24 Rairaku24    2   27.11.2020 11:54    0

Другие вопросы по теме Информатика