

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
snuke 君は自転車を買いに来ました。 snuke 君はすでに買う自転車を決めたのですが、その自転車にはベルが付いていないため、 自転車とは別にベルも買う必要があります。
snuke 君は安全意識が高いので、ベルをどちらの手でも鳴らせるよう、両方のハンドルに つずつ 付けることにしました。
お店にあるベルは 種類で、それぞれ 円、 円、 円です。 この つのうち、異なる つのベルを選んで買うときの、値段の合計の最小値を求めて下さい。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
つのベルを買うときの最安値を出力せよ。
入力例 1Copy
700 600 780
出力例 1Copy
1300
円のベルと 円のベルを買うと、 円かかります。
円のベルと 円のベルを買うと、 円かかります。
円のベルと 円のベルを買うと、 円かかります。
よって、一番安いのは 円です。
入力例 2Copy
10000 10000 10000
出力例 2Copy
20000
どの つを選んでも 円かかってしまいます。
Score : points
Problem Statement
Snuke is buying a bicycle. The bicycle of his choice does not come with a bell, so he has to buy one separately.
He has very high awareness of safety, and decides to buy two bells, one for each hand.
The store sells three kinds of bells for the price of , and yen (the currency of Japan), respectively. Find the minimum total price of two different bells.
Constraints
- , and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum total price of two different bells.
Sample Input 1Copy
700 600 780
Sample Output 1Copy
1300
- Buying a -yen bell and a -yen bell costs yen.
- Buying a -yen bell and a -yen bell costs yen.
- Buying a -yen bell and a -yen bell costs yen.
The minimum among these is yen.
Sample Input 2Copy
10000 10000 10000
Sample Output 2Copy
20000
Buying any two bells costs yen.