#P347. 练60.1 丢失的数字
练60.1 丢失的数字
Description
Given integers between and , can you find which integers from to are missing?
Input Format
The first line contains two integers and separated by a space (, ), indicating there are integers between and . The next lines each contain one integer (, it is guaranteed that all numbers are different).
Output Format
Output one number per line, in ascending order, the integers from to that do not appear in the input data.
Sample
5 3
3
1
42
5
Related
In following homework: