Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
16988 2024-04-23 17:18:59 ewu_intra24_mock_u_184 Age of Bangladesh C++ 17 2 ms 3432 kb Accepted
Test Cases
CPU Memory Verdict
1 2 ms 3372 kb Accepted
2 1 ms 3392 kb Accepted
3 1 ms 3316 kb Accepted
4 1 ms 3432 kb Accepted
5 1 ms 3368 kb Accepted
6 1 ms 3420 kb Accepted
7 1 ms 3316 kb Accepted
8 1 ms 3332 kb Accepted
9 1 ms 3260 kb Accepted
Source Code
program.cpp
Download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long int ll;
  4.  
  5. int main(){
  6. ios_base::sync_with_stdio(false);
  7. cin.tie(0); cout.tie(0);
  8. int t;
  9. cin >> t;
  10. cout << t - 1971 << '\n';
  11. return 0;
  12. }