1069 - 丢失的数字
Description

给你m个1到n之间的整数,你能找出1到n中的哪些整数没有出现吗?


Input
第一行2个整数n,m,直接用空格分隔(1 <= n <= 100000, m < n),表示有m个1到n之间的整数。


Output
每行1个数,从小到大输出输入数据中没有出现过的1到n中的整数。


Examples

Input

5 3
3
1
4

Output

2
5
题目参数
Time Limit 1 second
Memory Limit 128 MB
提交次数 142
通过次数 56