19012 - 数字求和 202209
Time Limit : 1 秒
Memory Limit : 128 MB
给定一个正整数a,以及另外的5个正整数,问题是:这5个整数中,小于a的整数的和是多少?
Input
输入一行,只包括6个小于100的正整数,其中第一个正整数就是a。
Output
输出一行,给出一个正整数,是5个数中小于a的数的和。
Examples
Input
10 1 2 3 4 11
Output
10
Source
202209真题