5557: Repression压制(ABC207A)
内存限制:1024 MB
时间限制:2.000 S
评测方式:文本比较
命题人:
提交:1
解决:1
题目描述
There are three cards on the desk, each with a positive integer written on it. The integers on the cards are $A$, $B$, and $C$.
You have chosen two cards and picked them up.
Find the maximum possible sum of the integers written on the picked cards.
Constraints:
- $1 \leq A,B,C \leq 100$
- All values in input are integers.
桌子上有三张卡片,每张卡片上写有一个正整数。
这些卡片上的整数分别是 4、B 和C。
你需要选择其中两张卡片并拿起。
请找出所选卡片上的整数之和的最大可能值,
数据范围:
- $1 \leq A,B,C \leq 100$
- 所有的输入都是整数
输入
A B C
输出
Print the answer as an integer.
将答案作为整数输出。
样例输入 复制
3 4 5
样例输出 复制
9