1168: 按要求输出字符串

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

输入 n 个字符串,将其中以 A 开头的字符串输出。

Input

1.一个整数,表示即将要输入的字符串个数
2.各个字符串
注意:所有字符串均不含空白字符

Output

以 A 开头的字符串

Sample Input Copy

3
qwer
ASDF
AAbbc

Sample Output Copy

ASDF
AAbbc

Source/Category