列表

详情


NP10. 牛牛最好的朋友们

描述

牛牛有两个最好的朋友,他们的名字分别用input读入记录在两个字符串中,请使用字符串连接(+)帮助牛牛将两个朋友的名字依次连接在一个字符串中输出。

输入描述

依次输入两个字符串

输出描述

输出连接后的字符串

示例1

输入:

NiuMei
NiuNeng

输出:

NiuMeiNiuNeng

原站题解

Python 解法, 执行用时: 10ms, 内存消耗: 2852KB, 提交时间: 2022-08-04

name1 = raw_input()
name2 = raw_input() 
print(name1+name2)

Python 解法, 执行用时: 10ms, 内存消耗: 2852KB, 提交时间: 2022-07-29

print(raw_input()+raw_input())

Python 解法, 执行用时: 11ms, 内存消耗: 2836KB, 提交时间: 2022-08-06

print (raw_input() + raw_input());

Python 解法, 执行用时: 11ms, 内存消耗: 2864KB, 提交时间: 2022-08-04

c=raw_input()
s=raw_input()
print(c+s)

Python 解法, 执行用时: 11ms, 内存消耗: 2868KB, 提交时间: 2022-07-29

a=raw_input()
b=raw_input()
print(a+b)

上一题