So I've looked everywhere and still can't figure it out.
Basically what I want to do is split number x
into two integers that when multiplied they give as result x
.
For example:
Input: 10
Output: 5, 2
Is there a way to do this in python? Thanks in advance.