The number of n-digit numbers is 2
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Given two natural numbers, n and m, determine how many natural numbers with exactly n digits are greater than m.
Input
The input consists of two natural numbers, n and m, provided on a single line and separated by a space (1 ≤ n ≤ 12
, 1 ≤ m ≤ 10^12
).
Output
Output the number of n-digit natural numbers that are greater than m.
Examples
Input #1
Answer #1
Submissions 1K
Acceptance rate 20%