Multiple of Previous Two

Write a program that reads a sequence of positive integers and reports the first one that is a multiple of both two previous numbers in the sequence, together with the corresponding quotients.

Input

A sequence of positive integers i0i_0, i1i_1, i2i_2, ... finished by the value -1 that marks the end and does not count as a member of the sequence. There is no constraint (neither upper nor lower) on the length of the sequence.

Output

The first value ini_n in the sequence that is a multiple of both previous ones (that is, ini_n is a multiple of in1i_{n-1} and of in2i_{n-2}) together with the corresponding quotients (namely, in/in1i_n / i_{n-1} and in/in2i_n / i_{n-2}). In case no element of the sequence fulfills this condition, the output should be 0 (the integer zero).

Observation

The usage of “break” is hereby explicitly forbidden.

Problem information

Author: José Luis Balcázar

Generation: 2026-01-25T14:28:42.026Z

© Jutge.org, 2006–2026.
https://jutge.org