#abc292a. A - CAPS LOCK

A - CAPS LOCK

Score : 100100 points

问题描述

给定一个仅包含小写英文字母的字符串 SS

SS 中的每个字符转换为大写,并输出得到的新字符串 TT

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

You are given a string SS consisting of lowercase English letters.

Uppercase each character of SS and print the resulting string TT.

Constraints

  • SS is a string consisting of lowercase English letters whose length is between 11 and 100100, inclusive.

Input

The input is given from Standard Input in the following format:

SS

Output

Print TT.

Sample Input 1

abc

Sample Output 1

ABC

Uppercase each character of abc, and you have ABC.

Sample Input 2

a

Sample Output 2

A

Sample Input 3

abcdefghjiklnmoqprstvuwxyz

Sample Output 3

ABCDEFGHJIKLNMOQPRSTVUWXYZ

update @ 2024/3/10 12:10:20