#include <iostream>
using namespace std;
int main()
{
// user prompt
cout << "Please, print an integer" << endl;
// reading an integer
int x;
cin >> x;
// if the number is a multiple of 5
if (x % 5 == 0) {
cout << "HiFive" << endl;
}
// if the number is divisible by 2
if (x % 2 == 0) {
cout << "HiEven" << endl;
}
/*
Examples:
Please, print an integer
75
HiFive
Please, print an integer
42
HiEven
Please, print an integer
100
HiFive
HiEven
*/
}
Comments
Leave a comment