Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #факторизация числа
- x = int(input())
- i = 2
- a = []
- while i * i <= x:
- while x % i == 0 and i * i <= x:
- a.append(i)
- x //= i
- #continue
- i += 1
- a.append(x)
- print(*a)
- #или
- #факторизация
- x = int(input())
- i = 2
- a = []
- while i * i <= x:
- while x % i == 0 and i * i <= x:
- a.append(i)
- x //= i
- #continue
- i += 1
- a.append(x)
- print(*a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement