{"raw_statement":[{"iden":"problem statement","content":"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$.\nYou have chosen two cards and picked them up.\nFind the maximum possible sum of the integers written on the picked cards."},{"iden":"constraints","content":"*   $1 \\leq A,B,C \\leq 100$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$"},{"iden":"sample input 1","content":"3 4 5"},{"iden":"sample output 1","content":"9\n\nIf you pick up two cards with $4$ and $5$, the sum of the integers will be $4+5=9$.\nThere is no way to pick up cards with a greater sum, so we should print $9$."},{"iden":"sample input 2","content":"6 6 6"},{"iden":"sample output 2","content":"12\n\nWhichever two cards you choose, the sum of the integers will be $12$."},{"iden":"sample input 3","content":"99 99 98"},{"iden":"sample output 3","content":"198"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}