#include <stdio.h>
int main() {
int time = 20;
(time < 18) ? printf("白天好。") : printf("晚上好。");
return 0;
}