You are given a 6-digit number. Check if it has exactly one '1', two '2's, and three '3's in it. If it does, say 'Yes', otherwise say 'No'.
Input: '123233'
'123233'
Output: Yes
Yes
Input: '123234'
'123234'
Output: No
No