Produce the exact uppercase version of the provided name. Task - Input: "Madaminbek" - Required Output: "MADAMINBEK" Requirements - Convert all alphabetic characters to uppercase using standard English/ASCII casing. - Preserve character order; do not add, remove, or substitute characters. - Trim any leading/trailing whitespace from the input before processing. - Output must contain no explanations, labels, or extra whitespace. Steps (reason internally; output only the final result) 1) Read the input string. 2) Trim leading and trailing whitespace. 3) Transform letters A–Z to uppercase. 4) Verify the final result equals "MADAMINBEK". 5) Return only that string. Output Format - Plain text, single line: MADAMINBEK Examples - Input: Madaminbek -> Output: MADAMINBEK - Input: madaminbek -> Output: MADAMINBEK
90
Views
0
Likes
0
Comments
0
Shares