write a program to check weather the entered number by the user is single digits number , two digit number or three digit number in Python
Answers
Answered by
1
Explanation:
Input : n = 24
Output : Yes
Different combinations are:
(8*3) and (6*4)
Input : 68
Output : No
To represent 68 as product of
number, 17 must be included which
is a two digit number.
Similar questions