Problem A
Prsteni
After an exhausting morning, Mirko fell asleep. His brother Stanko, however, just awoke and, like his brother, is all about excitement. Stanko found N rings of varying radii in the garage. He arranged them on the floor so that each ring (except the first and last) touches the ones before and after it.
![\includegraphics[width=0.5\textwidth ]{rings.pdf}](/problems/prsteni/file/statement/en/img-0001.png)
He started turning the first ring and noticed that the other rings turned as well; some faster, some slower!
Thrilled with his discovery, he decided to count how many times the other rings turn while the first ring turns once. He gave up after noticing that this number is not always an integer and not knowing what to do.
Write a program that determines how many times each ring turns while the first turns once.
Input
The first line of input contains an integer
The next line contains
Output
The output must contain
Sample Input 1 | Sample Output 1 |
---|---|
3 8 4 2 |
2/1 4/1 |
Sample Input 2 | Sample Output 2 |
---|---|
4 12 3 8 4 |
4/1 3/2 3/1 |
Sample Input 3 | Sample Output 3 |
---|---|
4 300 1 1 300 |
300/1 300/1 1/1 |