#include <iostream>
#include <sstream>
using namespace std;
bool float_even(float f) {
ostringstream os;
os << f;
string s = os.str();
int n = s[s.size() - 1] - '0';
return n % 2 == 0;
}
int main() {
float f = 23.8713;
if (float_even(f))
cout << "even" << endl;
else
cout << "odd" << endl;
f = 23.8716;
if (float_even(f))
cout << "even" << endl;
else
cout << "odd" << endl;
}
/*
run:
odd
even
*/