1) Assuming you need to "access each number one at a time", put the program in a loop. Inside the loop, read a number, use it, then when the loop returns to the beginning, the next number will be read.
2) If you need to use multiple numbers at the same time, the only appropriate way is to use an array. But from your description, this is not your case.