Write a program that reads two input parameters: first is a string that represents a big rational number, and second is a newScale of Int type.
Convert an input string to BigDecimal (make BigDecimal instance) and round it towards the "nearest neighbor"; if both neighbors are equidistant, round down. Precision depending on newScale.
Print the result.
Tip: Use HALF_DOWN mode.