Problem B
Rúnnfræði
Languages
en
is

Dagur is working on the homework he was assigned in the
statistics course he is taking. Dagur is however not sure
whether he should be rounding his answers or truncating them.
If his answer were
Input
The input contains two lines, each with one real number.
These values will never be negative and will always have at
least one digit after the decimal point. The last digit after a
decimal point will not be
Output
If the teacher must be rounding and not truncating, print Runnun. If the teacher must be truncating and not rounding, print Styfun. Otherwise print Veit ekki.
Scoring
Group |
Points |
Constraints |
1 |
20 |
Both values are |
2 |
30 |
At most |
3 |
30 |
At most |
4 |
10 |
At most |
5 |
10 |
At most |
Sample Input 1 | Sample Output 1 |
---|---|
123.456 123.46 |
Runnun |
Sample Input 2 | Sample Output 2 |
---|---|
456.123 400.0 |
Styfun |
Sample Input 3 | Sample Output 3 |
---|---|
123.123 123.12 |
Veit ekki |