Problem G
Draga Frá
Languages
en
is
Gluggagægir is looking for his friend Atli. Initially, all windows had their curtains drawn. He has already drawn open many window curtains to try to find Atli, but so far without success. He asks you to write a program for him which will tell him how many curtains are remaining.
Input
Input consists of two lines. The first line contains one integer $n$, the total number of windows initially covered by curtains. The second line contains one integer $m$, the total number of window curtains that have been drawn open.
Output
The total number of windows covered by curtains.
Scoring
Groups |
Points |
Constraints |
1 |
100 |
$0 \leq m \leq n \leq 10\, 000$ |
Sample Input 1 | Sample Output 1 |
---|---|
8 4 |
4 |
Sample Input 2 | Sample Output 2 |
---|---|
10 5 |
5 |
Sample Input 3 | Sample Output 3 |
---|---|
321 123 |
198 |