#abc122a. [abc122_a]Double Helix
[abc122_a]Double Helix
Problem Statement
On the Planet AtCoder, there are four types of bases: A
, C
, G
and T
. A
bonds with T
, and C
bonds with G
.
You are given a letter as input, which is A
, C
, G
or T
. Write a program that prints the letter representing the base that bonds with the base .
Constraints
- is one of the letters
A
,C
,G
andT
.
Input
Input is given from Standard Input in the following format:
Output
Print the letter representing the base that bonds with the base .
Sample Input 1
A
Sample Output 1
T
Sample Input 2
G
Sample Output 2
C