字串右移(1)
Description
請撰寫一個程式讓使用者輸入一個字串, 並把字串中的字元循環右移三個位置。
Please write a program that allows the user to input a string and cyclically shifts the characters in the string to the right by three positions
Input
輸入一個字串 s (最多50個字元)。
The first line contains a string s (up to 50 characters).
Output
請輸出循環右移過後的字串。
Please output the string after the shift.
Sample Input 1
abcdefg
Sample Output 1
efgabcd
Sample Input 2
hello
Sample Output 2
llohe
Hint
本題不會有字串長度小於 3 的情況。