8 lines
154 B
C
8 lines
154 B
C
#include <stdio.h>
|
|
int main() {
|
|
int m = 306587;
|
|
long n = 28166459852;
|
|
printf("m=%hd, n=%hd\n", m, n);
|
|
printf("n=%d\n", n);
|
|
return 0;
|
|
} |