Write a program or function that takes a string as input and converts all lowercase alphabetic characters (a-z) to their uppercase equivalents (A-Z). Non-alphabetic characters (such as digits, symbols, and spaces) and already uppercase letters should remain unchanged.
Input: "hello"
Output: "HELLO"
Explanation: All lowercase letters 'h', 'e', 'l', 'l', 'o' are converted to uppercase.
Input: "TcS NqT!"
Output: "TCS NQT!"
Explanation: Mixed case string: 'T' and 'S' remain uppercase, 'c' and 'q' and 't' are converted to 'C', 'Q', 'T', and '!' remains unchanged.
Input: "123abc DEF"
Output: "123ABC DEF"
Explanation: Digits '123' and space remain same, 'abc' converted to 'ABC', and 'DEF' already uppercase remains unchanged.
Your notes are automatically saved in your browser's local storage and will persist across sessions on this device.