Remove First Character

You are given a String s as input, write a program that removes the first character of that string.

Example 1

Input

Ahmed

Output

hmed

Example 2

Input

Sara

Output

ara

Example 3

Input

Arshad

Output

rshad

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.