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