Problem9238--ABC292 —— A - CAPS LOCK

9238: ABC292 —— A - CAPS LOCK

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

### Problem Statement

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

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

Input

### Input

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

```
$S$
```

Output

### Output

Print $T$.

Constraints

### Constraints

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

Sample 1 Input

abc

Sample 1 Output

ABC

Sample 2 Input

a

Sample 2 Output

A

Sample 3 Input

abcdefghjiklnmoqprstvuwxyz

Sample 3 Output

ABCDEFGHJIKLNMOQPRSTVUWXYZ

Source/Category