eolymp
Problems

Even or Odd

published at 12/1/21, 2:31:49 pm

x=int(input()) if x%2==0: print("EVEN") else: print("ODD")

published at 4/26/23, 2:15:13 pm

include <iostream>

using namespace std; int main() { int x; cin>>x; if (x % 2 == 0) { cout<<"cut"; }
else{ cout<<"tek"; }

}