Как вынести из цикла 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)