跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1870. Random Teams

    ID: 1876 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>组合数学构造贪心数学算法思想基础难度共享题库Codeforces英文题面题目来源题面语言

Random Teams

题目描述

B. Random Teams
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

n participants of the competition were split into m teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends.

Your task is to write a program that will find the minimum and the maximum number of pairs of friends that could have formed by the end of the competition.

Input

The only line of input contains two integers n and m, separated by a single space (1≤mn≤109) − the number of participants and the number of teams respectively.

Output

The only line of the output should contain two integers kmin and kmax − the minimum possible number of pairs of friends and the maximum possible number of pairs of friends respectively.

Examples
Input
5 1
Output
10 10
Input
3 2
Output
1 1
Input
6 3
Output
3 6
Note

In the first sample all the participants get into one team, so there will be exactly ten pairs of friends.

In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one.

In the third sample minimum number of newly formed friendships can be achieved if participants were split on teams consisting of 2 people, maximum number can be achieved if participants were split on teams of 1, 1 and 4 people.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1445 题。保留原作者与原赛事署名。