{"raw_statement":[{"iden":"statement","content":"Given two integers (a and b), get their sum:\n\nThere will be one line with two integers given, a and b, separated by spaces.\n\nYou should return the integer sum of a and b, sum. \n\n#cf_span(class=[tex-font-style-underline], body=[Constraints]):\n\n - 1, 000, 000, 000 ≤ a ≤ 1, 000, 000, 000\n\n - 1, 000, 000, 000 ≤ b ≤ 1, 000, 000, 000\n\n - 2, 000, 000, 000 ≤ sum ≤ 2, 000, 000, 000\n\n"},{"iden":"input","content":"There will be one line with two integers given, a and b, separated by spaces."},{"iden":"output","content":"You should return the integer sum of a and b, sum. "},{"iden":"examples","content":"Input5 9Output14Input50 -26Output24"},{"iden":"note","content":"#cf_span(class=[tex-font-style-underline], body=[Constraints]): - 1, 000, 000, 000 ≤ a ≤ 1, 000, 000, 000 - 1, 000, 000, 000 ≤ b ≤ 1, 000, 000, 000 - 2, 000, 000, 000 ≤ sum ≤ 2, 000, 000, 000"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ a, b \\in \\mathbb{Z} $ be two integers.\n\n**Constraints**  \n1. $ -1{,}000{,}000{,}000 \\leq a \\leq 1{,}000{,}000{,}000 $  \n2. $ -1{,}000{,}000{,}000 \\leq b \\leq 1{,}000{,}000{,}000 $  \n3. $ -2{,}000{,}000{,}000 \\leq a + b \\leq 2{,}000{,}000{,}000 $\n\n**Objective**  \nCompute $ s = a + b $.","simple_statement":"Given two integers a and b, print their sum.","has_page_source":false}