06: Write a Java program that will do the following: read from the user a String (e.g.: 'HowZare36you") extract all digits from the String and concatenate them using StringBuilder, then reverse them ("236" will be "632"), convert the result to an integer, add 5 to the integer, then print it (632+5 = 637).