#ABC107A. Train
Train
题目描述
There is an -car train.
You are given an integer . Find the value of such that the following statement is true: "the -th car from the front of the train is the -th car from the back."
有一辆 (节)车厢的火车。
给你一个整数 。求 的值,使得下面的语句为真:"从列车前方开出的第 节车厢就是从后方开出的第 节车厢"。
输入格式
输入内容按以下格式标准输入:
输出格式
打印答案
样例 #1
样例输入 #1
4 2
样例输出 #1
3
样例 #2
样例输入 #2
1 1
样例输出 #2
1
样例 #3
样例输入 #3
15 11
样例输出 #3
5
说明
数据规模与约定
样例 解释
一列 (节)车厢的列车从前面数起的第二节车厢是从后面数起的第三节车厢。