ages=input() ages_list=list(ages.split(" ")) sum_ages=sum(int(age) for age in ages_list) print(sum_ages)
相关推荐