#hhkb2020a. [hhkb2020_a]Keyboard
[hhkb2020_a]Keyboard
Problem Statement
Given are a character , which is Y
or N
, and another character , which is A
, B
, or C
.
If is Y
, print uppercased.
If is N
, print as it is.
Constraints
- is
Y
orN
. - is
a
,b
, orc
.
Input
Input is given from Standard Input in the following format:
Output
Print a character as specified in the problem statement.
Sample Input 1
Y
a
Sample Output 1
A
Since is Y
, we should print - which is a
- uppercased, that is, A
.
Sample Input 2
N
b
Sample Output 2
b
Since is Y
, we should print - which is b
- as it is.