{"raw_statement":[{"iden":"statement","content":"Radioactivity\n\nYou're trying to determine how many neutrons are in a certain radioactive isotope. You know how many protons are in the isotope, and you know the isotope's mass number. The mass number of an isotope is defined as the number of protons plus the number of neutrons. Given the number of protons and the mass number, figure out how many neutrons are in the radioactive isotope.\n\nThe only line of input contains two space-separated integers $p$ and $m$ ($p$ <= $m$), representing the number of protons in the isotope, and the mass number of the isotope, respectively.\n\nOutput a single positive integer $n$: the number of neutrons in the radioactive isotope.\n\n"},{"iden":"input","content":"The only line of input contains two space-separated integers $p$ and $m$ ($p$ <= $m$), representing the number of protons in the isotope, and the mass number of the isotope, respectively."},{"iden":"output","content":"Output a single positive integer $n$: the number of neutrons in the radioactive isotope."},{"iden":"examples","content":"Input92 238\nOutput146\nInput36 85\nOutput49\n"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ p \\in \\mathbb{Z} $ be the number of protons.  \nLet $ m \\in \\mathbb{Z} $ be the mass number.  \nLet $ n \\in \\mathbb{Z} $ be the number of neutrons.\n\n**Constraints**  \n1. $ 1 \\leq p \\leq m $\n\n**Objective**  \nCompute:  \n$$ n = m - p $$","simple_statement":"Subtract the number of protons from the mass number to get the number of neutrons.","has_page_source":false}