On your machine, an int may be 16 bits, limiting it to -32768 to 32767. Try it with longs instead of ints:

long apple = 36000, mango = 2;
printf("%l\n", apple * mango);