Concatenation of Strings


Submit solution

Points: 10 (partial)
Time limit: 1.0s
Memory limit: 64M

Author:
Problem type

題目說明

使用者輸入兩個不含空格的字串,程式把這兩個字串連接在一起,輸出結果

輸入規範

兩個不含空格的字串,分別放在兩行。

輸出規範

一個字串

範例輸入 #1

Hello
Java

範例輸出 #1

HelloJava

範例輸入 #2

12345
67890

範例輸出 #2

1234567890

Comments

There are no comments at the moment.