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

#F2443. Candies

    ID: 2449 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: (无) 上传者: 标签>待分类整理状态难度待定难度共享题库Codeforces英文题面题目来源题面语言

Candies

题目描述

A. Candies
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarpus has got n candies and m friends (nm). He wants to make a New Year present with candies to each friend. Polycarpus is planning to present all candies and he wants to do this in the fairest (that is, most equal) manner. He wants to choose such ai, where ai is the number of candies in the i-th friend's present, that the maximum ai differs from the least ai as little as possible.

For example, if n is divisible by m, then he is going to present the same number of candies to all his friends, that is, the maximum ai won't differ from the minimum one.

Input

The single line of the input contains a pair of space-separated positive integers n, m (1≤n,m≤100;nm) − the number of candies and the number of Polycarpus's friends.

Output

Print the required sequence a1,a2,...,am, where ai is the number of candies in the i-th friend's present. All numbers ai must be positive integers, total up to n, the maximum one should differ from the minimum one by the smallest possible value.

Examples
Input
12 3
Output
4 4 4 
Input
15 4
Output
3 4 4 4 
Input
18 7
Output
2 2 2 3 3 3 3 
Note

Print ai in any order, separate the numbers by spaces.


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