int? m=0256? ,n = 256
/*
%o means output in octal format.
Because m=0256, the prefix is 0, which means octal number, so the output value of m is 256.
N=256, representing a decimal integer. The output should be in octal format, so it is 400, which means 4 * 8 2 = 256.
*/