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