A854.Line

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A line on the plane is described by an equation Ax+By+C=0Ax+By+C=0 . You are to find any point on this line, whose coordinates are integer numbers from 51018-5·10^{18} to 510185·10^{18} inclusive, or to find out that such points do not exist.

输入格式

The first line contains three integers AA , BB and CC ( 2109<=A,B,C<=2109-2·10^{9}<=A,B,C<=2·10^{9} ) — corresponding coefficients of the line equation. It is guaranteed that A2+B2>0A^{2}+B^{2}>0 .

输出格式

If the required point exists, output its coordinates, otherwise output -1.

输入输出样例

  • 输入#1

    2 5 3
    

    输出#1

    6 -3
    

说明/提示

提示说明

首页