3152: 将 vector 里所有字符串拼接成一个长字符串

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

Description

输入若干字符串,存入 vector,把它们全部连在一起输出。

Input

n + n 个字符串

Output

拼接后的一个长字符串

Sample Input Copy

3
I
love
C++

Sample Output Copy

IloveC++