102920: [Atcoder]ABC292 A - CAPS LOCK

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:3 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a string $S$ consisting of lowercase English letters.

Uppercase each character of $S$ and print the resulting string $T$.

Constraints

  • $S$ is a string consisting of lowercase English letters whose length is between $1$ and $100$, inclusive.

Input

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

$S$

Output

Print $T$.


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

Input

题意翻译

- 有一个小写字母序列 $S$。 - 把它转换成大写字母序列后输出。 - $1\le |S|\le 100$。

Output

分数:100分

问题描述

你将得到一个由小写英文字母组成的字符串$S$。

将$S$中的每个字符转换为大写,然后打印结果字符串$T$。

限制条件

  • $S$是一个长度在1到100之间的由小写英文字母组成的字符串。

输入

输入数据通过标准输入给出如下格式:

$S$

输出

打印$T$。


样例输入1

abc

样例输出1

ABC

abc中的每个字符转换为大写,得到ABC


样例输入2

a

样例输出2

A

样例输入3

abcdefghjiklnmoqprstvuwxyz

样例输出3

ABCDEFGHJIKLNMOQPRSTVUWXYZ

HINT

小写字母转大写?

加入题单

算法标签: