A1386.[COCI-2008_2009-contest5]#1 JABUKA

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Mirko has R red and G green apples to share with some of his friends, so that all of them receive the same number of red apples and also the same number of green apples. Mirko does not like apples himself so he doesn't want to be left with any apples afterward.
For example, if Mirko has 4 red and 8 green apples, he can divide them in three ways:

  1. One friend gets all 4 red and all 8 green apples;
  2. Two friends each receive 2 red apples and 4 green apples;
  3. Four friends each receive 1 red and 2 green apples.
    Write a program that outputs all ways for Mirko to divide his apples. Assume Mirko has an infinite supply of friends to give apples to.

输入格式

The first line contains two positive integers R and G separated by a space (1 ≤ R, G ≤ 1 000 000 000),
the numbers of red and green apples.

输出格式

For each possible distribution, output three integers N, X and Y on one line. The number N is the number of friends that will receive apples. The numbers X and Y tell how many red and greed apples each of them will receive.
Each distribution needs to be output exactly once. You may output the distributions in any order.

输入输出样例

  • 输入#1

    4 8

    输出#1

    1 4 8 
    2 2 4 
    4 1 2
  • 输入#2

    15 12 

    输出#2

    3 5 4 
    1 15 12
  • 输入#3

    42 105

    输出#3

    1 42 105 
    3 14 35 
    7 6 15 
    21 2 5

说明/提示

首页