#include <iostream>
using namespace std;
int main() {
int time = 20;
if (time < 18) {
cout << "日安。";
} else {
cout << "晚安。";
}
return 0;