#273. left2

left2

Background

Description

Given a string, return a "rotated left 2" version where the first 2 chars are moved to the end. The string length will be at least 2.

Format

Input

Output

Samples

Hello
"lloHe"
java
"vaja"
Hi
"Hi"

Limitation

1s, 1024KiB for each test case.