CF16C.Monitor

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Reca company makes monitors, the most popular of their models is AB999 with the screen size a×ba×b centimeters. Because of some production peculiarities a screen parameters are integer numbers. Recently the screen sides ratio x:yx:y became popular with users. That's why the company wants to reduce monitor AB999 size so that its screen sides ratio becomes x:yx:y , at the same time they want its total area to be maximal of all possible variants. Your task is to find the screen parameters of the reduced size model, or find out that such a reduction can't be performed.

输入格式

The first line of the input contains 4 integers — aa , bb , xx and yy ( 1<=a,b,x,y<=21091<=a,b,x,y<=2·10^{9} ).

输出格式

If the answer exists, output 2 positive integers — screen parameters of the reduced size model. Output 0 0 otherwise.

输入输出样例

  • 输入#1

    800 600 4 3
    

    输出#1

    800 600
    
  • 输入#2

    1920 1200 16 9
    

    输出#2

    1920 1080
    
  • 输入#3

    1 1 1 2
    

    输出#3

    0 0
    
首页