這題使用FOR回圈可以輕鬆解開
只要3行
import sys
for x in sys.stdin.read().split():
print(x[0].upper() + x[1:])
廢話這題都備註"板橋高中Python教學題"