#include <stdio.h>
int main() {
int myNum = 15; // myNum 现在是 15
myNum = 10; // 现在 myNum 是 10
printf("%d", myNum);
return 0;
}