fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. long long n;
  6. cin>>n;
  7. if(n%2==0)
  8. cout<<"EVEN";
  9. else
  10. cout<<"ODD";
  11. }
Success #stdin #stdout 0.01s 5276KB
stdin
45
stdout
ODD