You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# -*— codeing = utf-8 -*-
|
|
# @Time : 2022/2/24 17:38
|
|
# @Author : 吴锦婷
|
|
# @File : test.py
|
|
# @Softwate : PyCharm
|
|
|
|
first_name = input()
|
|
last_name = input()
|
|
f=first_name.title()
|
|
l=last_name.title()
|
|
print(f+' '+l) |