Virus growth

Viruses spread rapidly through a population of students. A student from the class becomes infected with a virus while abroad. This virus is not yet present in the country. The student returns to the class. There are a total of 41 students in the class. The students see each other every school day. The chance of infecting another healthy student in the class is p percent. Students who become infected can also infect other students the next day. All infected students remain contagious.

Assuming p = 2.5 and there are 40 healthy students, then 1 of these 40 will definitely become infected. The number of newly infected students in a day is calculated by first computing the probability of becoming infected. This is (1 - (1 - p/100) raised to the power of students_sick).

Kans

The number of students who become newly infected is this probability multiplied by the number of healthy students: healthy_students * infection_probability. This is rounded to a whole number of students using normal rounding, so 0.5 is rounded up to 1 and 0.4 is rounded down to 0.

Nieuwe besmettingen

Assignment

Examples

Input:

2.5

Output:

Monday 40 1
Ruesday 39 2
Wednesday 37 4
Thursday 33 8
Friday 27 14

Input:

-10

Output:

that value is not between 0 and 100.