Solved.ac 기준 : 브론즈 5 사용언어 C++
n - 1946하면 되는 쉬운 문제
#include <iostream> using namespace std; int main() { cin.tie(NULL); ios_base::sync_with_stdio(false); int n; cin >> n; cout << n - 1946; return 0; }