Hi all!

I'm a newbie and wonder why:

int a, b, c;
a = 5;
b = 12000;
c = a*b;
printf("%d", c);

does not yield 60000

Please help!