Recently an official statement of the world Olympic Committee said that the Olympic Winter Games 2030 will be held in Tomsk. The city officials decided to prepare for the Olympics thoroughly and to build all the necessary Olympic facilities as early as possible. First, a biathlon track will be built.
To construct a biathlon track a plot of land was allocated, which is a rectangle divided into
n×m identical squares. Each of the squares has two coordinates: the number of the row (from 1 to
n), where it is located, the number of the column (from 1 to
m), where it is located. Also each of the squares is characterized by its height. During the sports the biathletes will have to move from one square to another. If a biathlete moves from a higher square to a lower one, he makes a descent. If a biathlete moves from a lower square to a higher one, he makes an ascent. If a biathlete moves between two squares with the same height, then he moves on flat ground.
The biathlon track should be a border of some rectangular area of the allocated land on which biathletes will move in the clockwise direction. It is known that on one move on flat ground an average biathlete spends
tp seconds, an ascent takes
tu seconds, a descent takes
td seconds. The Tomsk Administration wants to choose the route so that the average biathlete passes it in as close to
t seconds as possible. In other words, the difference between time
ts of passing the selected track and
t should be minimum.
For a better understanding you can look at the first sample of the input data. In this sample
n=6,m=7, and the administration wants the track covering time to be as close to
t=48 seconds as possible, also,
tp=3,
tu=6 and
td=2. If we consider the rectangle shown on the image by arrows, the average biathlete can move along the boundary in a clockwise direction in exactly
48 seconds. The upper left corner of this track is located in the square with the row number
4, column number
3 and the lower right corner is at square with row number
6, column number
7.

Among other things the administration wants all sides of the rectangle which boundaries will be the biathlon track to consist of no less than three squares and to be completely contained within the selected land.
You are given the desc
ription of the given plot of land and all necessary time values. You are to write the program to find the most suitable rectangle for a biathlon track. If there are several such rectangles, you are allowed to print any of them.