eolymp
bolt
Try our new interface for solving problems
Problems

Mouse and corns

Mouse and corns

Time limit 1 second
Memory limit 128 MiB

In the Indian temple the floor has rectangular form filled with identical square tiles 1 \times 1. Each tile contains from 0 to k~(k \le 30000) corns. A mouse runs out from a left lower corner and go to the exit in right upper corner.

Mouse can go only right or forward, collecting all the corns from the tiles where it resides.

Find the route, where mouse can take as much corn as possible.

Input data

The first line contains m and n~(1 \le m, n \le 100) — the floor size. Next we have m lines, starting from top, each contains n numbers — the number of corns on the floor.

Output data

Print the route of the mouse in format: RRFFFRF (F — step forward, R — step right).

Examples

Input example #1
2 3
3 2 4
1 5 1
Output example #1
RFR
Author Анатолий Присяжнюк