问题3481--Automated Telephone Exchange

3481: Automated Telephone Exchange

[命题人 : ]
时间限制 : 10.000 sec  内存限制 : 64 MB

题目描述

In St Petersburg phone numbers are formatted as “XXX–XX–XX”, where the first three digits represent index of the Automated Telephone Exchange (ATE). Each ATE has exactly 10 000 unique phone numbers. Peter has just bought a new flat and now he wants to install a telephone line. He thinks that a phone number is lucky if the arithmetic expression represented by that phone number is equal to zero. For example, the phone number 102–40–62 is lucky (102 - 40 - 62 = 0), and the number 157–10–47 is not lucky (157 - 10 - 47 = 100 != 0). Peter knows the index of the ATE that serves his house. To get an idea of his chances to get a lucky number he wants to know how many lucky numbers his ATE has.

输入

The input file contains a single integer number n — the index of Peter’s ATE (100 <= n <= 999).

输出

Output a single integer number — the number of lucky phone numbers Peter’s ATE has.

样例输入 Copy

196
239

样例输出 Copy

3
0

来源/分类