Write a function named removeDigit (function name is case sensitive) which takes two parameters: an integer pointer (say: p), and an integer (say x), respectively. The function should remove x digit (from the right) of the integer inside the address: p (divide the number to 10^x).

The given main program reads two integers: number and digit. Then calls your function removeDigit. You must fill in the parameters. Send the address of the number, and the value of the digit to the function, respectively.

As a result, that much digit of the number from the right should be removed. The program prints the new version of the number to the screen.

Be careful: Just enter the two parameters between the given commented space, seperated by a comma. Don't add paranthesis, or semicolon. They are already given outside the commented space, and together they form a function call.

Assumptions/rules for input:

Examples:
INPUT OUTPUT
1923
1
192
12453
3
12
987654
5
9


Important issues about all exams/projects/quizzes: