CF1521A Nastia and Nearly Good Numbers

题目描述

Nastia有两个正整数 $A,B$ 如果一个正整数 $C$ 可以被 $A*B$ 整除,则称这个正整数$C$为“好数”。 如果一个正整数 $C$ 不能被 $A*B$ 整除却能被$A$整除,则称这个正整数$C$为“接近好数”。 请你找出三个正整数 $x,y,z$, 使他们中恰好有一个数是“好数”且另外两个数是“接近好数”,且满足$x+y=z$。

输入格式

输出格式

说明/提示

In the first test case: $ 60 $ — good number; $ 10 $ and $ 50 $ — nearly good numbers. In the second test case: $ 208 $ — good number; $ 169 $ and $ 39 $ — nearly good numbers. In the third test case: $ 154 $ — good number; $ 28 $ and $ 182 $ — nearly good numbers.