ionree

45
reputation
1
1
5

int timeWithFreshAir;
while (true) {
    if ((system.time.hour && system.time.minute) >= 00) ++timeWithFreshAir;
    if (timeWithFreshAir >= 7) cout >> "7 days with fresh air makes one weak!");
}

ionree