Shift each letter by k positions, wrap around. Non-alpha unchanged. Example: "Hello",k=3 => "Khoor"
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
Hello 3
Output
Khoor