The function takes a string input and converts all lowercase letters to uppercase, leaving numbers, symbols, and uppercase letters unchanged.
[CODE]: 
def f(x: str) -> str:
    return x.upper() 

Please let me know if you'd like me to run more tests.

COMMAND: PYTHON(./temp/function.py "Hello, World!" "test123" "PyThOn")