#include<stdio.h>

int main()

{

const int num=2;//常变量

printf("%d\n",num);

num=4;

printf("%d\n",num);

return 0;

}