Write a program that extracts and outputs all big numbers from a string. A big number contains at least 10 characters.
Output all the big numbers you found. Each number should start with a new line and be followed by its length (the number of digits). Insert the colon : character to separate numbers and their lengths.
Try to use Matcher and Pattern to solve it. All the needed modules are already imported.