The function takes a string input and performs one of the following operations: 
1. If the input is "hello", it appends the string " world" to it.
2. If the input consists of only digits, it converts the input to an integer, multiplies it by 2, and returns the result as a string.
3. If the input consists of only alphabetic characters, it reverses the input string and returns it.

