#hhkb2020a. [hhkb2020_a]Keyboard

[hhkb2020_a]Keyboard

Problem Statement

Given are a character SS, which is Y or N, and another character TT, which is A, B, or C.

If SS is Y, print TT uppercased.

If SS is N, print TT as it is.

Constraints

  • SS is Y or N.
  • TT is a, b, or c.

Input

Input is given from Standard Input in the following format:

SS TT

Output

Print a character as specified in the problem statement.


Sample Input 1

Y
a

Sample Output 1

A

Since SS is Y, we should print TT - which is a - uppercased, that is, A.


Sample Input 2

N
b

Sample Output 2

b

Since SS is Y, we should print TT - which is b - as it is.