#include <iostream>using namespace std;
int main() { int a; //宣告一個名為a的變數 cin >> a; //存入變數a cout << (a-1911); //輸出a-1911 return 0;}