{"raw_statement":[{"iden":"statement","content":"An integer reserves 4 bytes in the memory.\n\nYour program needs to define $n$ integers, print how many bytes in the memory in total will be reserved. \n\nThe input will contain only one integer $n$ $(1 <= n <= 100)$, the number of defined integers in your program. \n\nYou should print how many bytes will $n$ integers reserve in memory.\n\n"},{"iden":"input","content":"The input will contain only one integer $n$ $(1 <= n <= 100)$, the number of defined integers in your program. "},{"iden":"output","content":"You should print how many bytes will $n$ integers reserve in memory."},{"iden":"examples","content":"Input4\nOutput16\nInput2\nOutput8\n"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ n \\in \\mathbb{Z} $ denote the number of defined integers.\n\n**Constraints**  \n$ 1 \\leq n \\leq 100 $\n\n**Objective**  \nEach integer reserves 4 bytes. Compute the total memory reserved:  \n$$\n4n\n$$","simple_statement":"Each integer takes 4 bytes. Given n integers, print 4 * n.","has_page_source":false}