시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB25161568.182%

문제

In Lineland the Ministry of Tourism has decided to prepare a sightseeing route for tourists. There are $n$ cities in Lineland, they are located at a straight road. The cities are enumerated from $1$ to $n$ along this road. Some of these cities contain sights interesting for tourists. Let us introduce the value $a_i$, if the $i$-th city has a sight then $a_i = 1$, otherwise $a_i = 0$.  

The sightseeing route for tourists will be chosen by the Ministry of Tourism. You have to provide them with two similar routes to choose from. Each route must visit a continuous segment of cities along the line: $l, l+1, \ldots, r$. Two routes are similar if they visit the same number of cities, and also they visit the same number of cities that have sights.

Your task is two find two similar routes that have the maximum number of visited cities.

입력

Input contains a string that consists of characters "0" and "1". The $i$-th character of the string represents $a_i$. The length of this string is from $3$ to $10^6$. Input contains no spaces.

출력

Output four integers: $s_1$, $t_1$, $s_2$ and $t_2$ --- the numbers of the first and the last cities of the first route, and the numbers of the first and the last cities of the second route, respectively. It is guaranteed that the answer always exists.

예제 입력 1

10101

예제 출력 1

1 4 2 5