Nối đuôi nhau

View as PDF

Submit solution


Points: 0.01
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Author:
Problem type

Viết chương trình nhập vào hai chuỗi s1 và s2, sau đó ghép hai chuỗi đó lại và in ra kết quả.

ví dụ s1 là "ab", s2 là "cd"

In ra là:

abcd

Input

Đầu vào là 2 chuỗi kí tự s1, s2

Output

Đầu ra là 1 chuỗi duy nhất được ghép bởi s1, s2.

Examples

Input

ab cd

Output

abcd

Input

00 ss

Output

00ss

Comments

Please read the guidelines before commenting.


There are no comments at the moment.