#include<bits/stdc++.h> using namespace std; int main(){ long long int n; cin>>n; n=n%2023; if(n<0) n=abs(n); else cout<<n; return 0; }
最后四个测试点错了