was wondering if there is any easy way to have mutiple deposits
with only declaring one variable

Code:
while (month >= 1)////start loop
	{
		cout <<"Please enter total deposits per month  $: ";
		cin >> dep;
in the above example how would someone enter

40.00 160.00 200.00

as individual deposits without using an array I done it before but cant remember how???