#include <stdio.h>
int n;
int main(){
    scanf("%d",&n);
    printf("%d",n);
    // 需要知道变量 n的内存地址,以便将读取的值存入这个地址
    // &n是“取地址运算符”,返回变量 n在内存中的地址
    // 如果没有 &,scanf只会拿到 n的当前值,无法修改它
    // printf 不需要 &n​ → 因为只需读取变量的值
    return 0;
}