#ABC122A. Double Helix
Double Helix
题目描述
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 .
在 AtCoder 星球上,有四种碱基:A"、"C"、"G "和 "T"。A "与 "T "结合,"C "与 "G "结合。
输入一个字母 ,该字母是
A
、C
、G
或T
。请编写一个程序,打印出代表与碱基 结合的碱基的字母。
输入格式
输入内容按以下格式标准输入:
输出格式
打印代表与碱基 结合的碱基的字母。
样例 #1
样例输入 #1
A
样例输出 #1
T
样例 #2
样例输入 #2
G
样例输出 #2
C
说明
数据规模与约定
- 是字母
A
、C
、G
和T
中的一个。