Hint 1: You can use the modulo operator (%) to get the desired number of least significant (rightmost) digits of a number. Ex: The rightmost 2 digits of 572 can be obtained by 572 % 100, which is 72.
Hint: Use the integer division operator (/) to obtain the most significant (leftmost) digits of a number. Ex: Dividing 572 by 100 yields 5. (Recall integer division discards the fraction).
Use a combo of these two operations to break down the number in the desired parts (e.g., area code) and print out the right format. You do not need to use loops.
For simplicity, assume any part starts with a non-zero digit. So 0119998888 is not allowed as input.