This implies something more important: that you do not know what an 'int' actually IS.
an int is a group of bits, forming bytes, not a 'base 10 decimal text string' (which is what you see when you cout it). A number is a number: 0011 3 0x03 are all the same value, if you had 3 quarters, you still have 3 quarters, no matter how you write it. Cout is 'how you write it'. INT is how you work with it internally, without looking at it until you need to do so.