A - Consecutive Integers
Editorial
/
Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
すぬけ君は 1,2,\ldots,N の N 個の整数を持っています。 すぬけ君はこれらの整数から K 個の整数を選んで高橋君にあげようと考えています。
連続する K 個の整数を選ぶ方法は何通りありますか?
制約
- 入力は全て整数
- 1 \leq K \leq N \leq 50
入力
入力は以下の形式で標準入力から与えられる。
N K
出力
答えを出力せよ。
入力例 1
3 2
出力例 1
2
- 連続する 2 個の整数を選ぶ方法は (1,2) と (2,3) の 2 通りです。
入力例 2
13 3
出力例 2
11
Score : 100 points
Problem Statement
Snuke has N integers: 1,2,\ldots,N. He will choose K of them and give those to Takahashi.
How many ways are there to choose K consecutive integers?
Constraints
- All values in input are integers.
- 1 \leq K \leq N \leq 50
Input
Input is given from Standard Input in the following format:
N K
Output
Print the answer.
Sample Input 1
3 2
Sample Output 1
2
There are two ways to choose two consecutive integers: (1,2) and (2,3).
Sample Input 2
13 3
Sample Output 2
11