I have an int that i would want to convert to
String if the integer is less than 4 digit it should append zeros to fill in the missing digits for example
int input=9
the function convertToString(input) should return 0009
int input=19
the function convertToString(input) should return 0019
int input=119
the function convertToString(input) should return 0119
int input=1119
the function convertToString(input) should return 1119