405677: GYM102035 A N integers
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
A. N integerstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output
An integer reserves 4 bytes in the memory.
Your program needs to define $$$n$$$ integers, print how many bytes in the memory in total will be reserved.
InputThe input will contain only one integer $$$n$$$ $$$(1 \leq n \leq 100)$$$, the number of defined integers in your program.
OutputYou should print how many bytes will $$$n$$$ integers reserve in memory.
ExamplesInput4Output
16Input
2Output
8