you work in a company that produces futuristic gadgets. Your new product & mdash; Bio-tracker "Vita Puls", which every day measures the "indicator of the life energy" of the user. At the end of the week, the device generates the final report in the form of one line. Your task & mdash; Write a program that analyzes this report.
rn
the program must extract from the line the user name and its indicators in the week. Then, using & nbsp; the & nbsp; While Сode> , it should calculate the average value of only & nbsp; positive & nbsp; indicators. A positive indicator means a good, energetic day. Negative indicators (stress, fatigue) and zero (neutral day) should not be taken into account when calculating the average.
rn
you need to process the input line, convert the numerical data from the string type (for this you can use Cycle & nbsp; for ), and then using the cycle & nbsp; While Find the amount and number of positive indicators for calculating the average.
Input format
line (string), which always has the following view: & nbsp; "name: [user name]; indicators: number through a gap]" . For example, & nbsp; Name: Alexey; Indicators: 10 -5 22 0 -12 18 7 .
Output format
The line (string) containing the user name and the average value of its positive indicators. If there were no positive reasons for a week, you need to display a special message.
Example
Input
Name: Elena; Indicators: 15 -4 25 0 10 -8 5
Output
Elena, the average indicator of your life energy for the week: 13.75
Hint
There will be no clue here, decide for yourself!