The function takes a string input. If the input contains only alphabetic characters, each character is shifted forward by two positions in the alphabet (Caesar cipher encryption with a shift value of 2). If the input contains any non-alphabetic characters, the function returns the input string as it is.

