01: #include <stdio.h> 02: 03: int main(void) 04: { 05: int a, b; 06: unsigned int c; 07: a = 54000; 08: b = 40000; 09: c = a * b; 10: printf("%u\n", c); 11: 12: return 0; 13: }