Haha I had to make an account just to help you out. Although I do see where the guy who just gave you the page to read is coming from, you will have to get used to researching and finding answers to these things on your own if you want to become a good programmer. It gets easier the more you do it is best to try and get good at it as soon as you can.
Anyway, to solve your problem. an int in java is limited to a certain size. java int's are only (i totally forget how many) bits in size and therefore can only store as big a number as can fit within that many bits. If you need to be able to store bigger numbers, declare your variable as a 'long' instead of an 'int'. A long is just like an int but is bigger and can therefore store larger numbers.