Result Size: 625 x 571
x
 
#include <iostream>
using namespace std;
int main() {
  int time = 20;
  if (time < 18) {
    cout << "Good day.";
  } else {
    cout << "Good evening.";
  }
  return 0;
}
Good evening.