Encrypt a string using Caesar cipher with shift k. Only shift lowercase letters, leave rest unchanged.
Implement this function:
def caesar_encrypt(s: str, k: int) -> str:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s, k.
Input
'hello'
3
Output
'khoor'