A contest date is too late for TOPC if it is not at least 35 days prior to Octobor 21, 2023. Please write a program to determine whether a tentative contest date is too late for TOPC.
{ // Place your snippets for cpp here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // same ids are connected. // Example: "Print to console":{ "prefix":"codeforces", "body":[ "#include<bits/stdc++.h>", "#define N 200010", "#define ls x<<1", "#define rs x<<1|1", "#define MID ((l+r)>>1)", "#define mkp(a,b) make_pair(a,b)", "// mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());", "//#define int long long", "//#define P pair<int,int>", "using namespace std;", "int T=1,n,m;", "signed main(){", " scanf(\"%d\",&T);", " while(T--){", " $0", " }", " return 0;", "}" ], "description":"Codeforces output to console" }, "daily use code":{ "prefix":"log", "body":[ "#include<bits/stdc++.h>", "#define N 200010", "#define ls x<<1", "#define rs x<<1|1", "#define MID ((l+r)>>1)", "#define mkp(a,b) make_pair(a,b)", "//#define int long long", "//#define P pair<int,int>", "using namespace std;", "int T=1,n,m;", "signed main(){", " scanf(\"%d\",&n);", " $0", " return 0;", "}" ], "description":"Log output to console", }, }