Remove Last Character

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

Example 1

Input

Ahmed

Output

Ahme

Example 2

Input

Sara

Output

Sar

Example 3

Input

Arshad

Output

Arsha

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