The task is to find a pair of numbers whose digits are 1-9, no digit repeated such that their product is maximum possible.
eg. 123 and 456789 is one such pair.
Question: Please suggest a way to do it.
I tried writing a code in Python but failed. Any logical approach is appreciated.