you work as an analyst in the company conducting the lottery. Every day, Lototron gives out a very long sequence of characters in which winning numbers are encrypted. Your task & mdash; Help players by writing a program that automatically extracts all unique numbers from this mishmash of symbols. These numbers, located in the order in which they first met, will compose a “happy combination” of the day.
rn
technical tasks: write a program that takes one line on the input. The program should analyze this line and find all unique numbers in it (0-9). From the unique numbers found, you need to form a new line, maintaining the order of their first appearance. If not a single figure was found in the input line, the program should display the message: “Another circle!”.
Input format
One line that can contain any characters: letters, numbers, punctuation marks. (Type: string/string)
Output format
a line containing only unique numbers from the input line in the order of their first appearance. Or the message "Another circle!" If there are no numbers. (Type: string/string)
Example
Input
winnings: 48-15-16-23-42. Repeat: 4, 8.
Hint
There will be no clue here, decide for yourself!