CSES - KILO 2015 5/5 - Number
  • Time limit: 1.00 s
  • Memory limit: 128 MB

You are given a number that consists of nn digits between 1 and 9. Your task is to remove exactly one digit so that the resulting number is as large as possible.

Input

The only input line contains the number.

Output

Output the maximum number after removing one digit.

Constraints

  • 2n1052 \le n \le 10^5

Example

Input:

352

Output:

52

Input:

777757

Output:

77777