#ABC107A. Train

Train

题目描述

There is an NN-car train.

You are given an integer ii. Find the value of jj such that the following statement is true: "the ii-th car from the front of the train is the jj-th car from the back."

有一辆 NN (节)车厢的火车。

给你一个整数 ii 。求 jj 的值,使得下面的语句为真:"从列车前方开出的第 ii 节车厢就是从后方开出的第 jj 节车厢"。

输入格式

输入内容按以下格式标准输入:

NN ii

输出格式

打印答案

样例 #1

样例输入 #1

4 2

样例输出 #1

3

样例 #2

样例输入 #2

1 1

样例输出 #2

1

样例 #3

样例输入 #3

15 11

样例输出 #3

5

说明

数据规模与约定

  • 1N1001 \leq N \leq 100
  • 1iN1 \leq i \leq N

样例 11 解释

一列 44 (节)车厢的列车从前面数起的第二节车厢是从后面数起的第三节车厢。