NC252841. June
描述
输入描述
The first line contains a string consisting of lowercase letters, representing the name of the person.The second line contains a string consisting of lowercase letters, representing the name of the event.
输出描述
A single line, output "Good luck to in and have fun!" (without quotes).
示例1
输入:
you gxcpc
输出:
Good luck to you in gxcpc and have fun!
pypy3 解法, 执行用时: 70ms, 内存消耗: 21216K, 提交时间: 2023-06-05 00:23:40
print(f"Good luck to {input()} in {input()} and have fun!")
Python3 解法, 执行用时: 41ms, 内存消耗: 4932K, 提交时间: 2023-06-05 18:48:59
print(f'Good luck to {input()} in {input()} and have fun!')