{"raw_statement":[{"iden":"statement","content":"You have made $n$ payments in the past year, and you would like to figure out how much money you have spent in total, in cents.\n\nThe first line of input contains a positive integer $n$, indicating the number of payments that you have made. The next $n$ lines each contain a positive integer $m$, indicating the amount that you paid in cents.\n\nOutput a single positive integer $s$: the amount of money that you have spent in total, in cents.\n\n"},{"iden":"input","content":"The first line of input contains a positive integer $n$, indicating the number of payments that you have made. The next $n$ lines each contain a positive integer $m$, indicating the amount that you paid in cents."},{"iden":"output","content":"Output a single positive integer $s$: the amount of money that you have spent in total, in cents."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ n \\in \\mathbb{Z}^+ $ be the number of payments.  \nLet $ M = (m_1, m_2, \\dots, m_n) $ be a sequence of positive integers, where $ m_i $ is the amount of the $ i $-th payment in cents.\n\n**Constraints**  \n1. $ n \\geq 1 $  \n2. $ m_i \\geq 1 $ for all $ i \\in \\{1, 2, \\dots, n\\} $\n\n**Objective**  \nCompute the total spent:  \n$$ s = \\sum_{i=1}^{n} m_i $$","simple_statement":null,"has_page_source":false}