eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

AAAAHH! Overbooked!

AAAAHH! Overbooked!

Лимит времени 1 секунда
Лимит использования памяти 64 MiB

Elaine is excited tobeg in the school year - so excited, in fact, that she signed herself up to attend several events today (This programming contest, sadly, is not one of them). She may have overdone it, though; she didn't bother to check whether the events she signed up for have conflicting times. While you're sitting here in this contest, why not check for her?

Входные данные

The input consists of multiple test cases. Each test case begins with an integer N, 1N ≤ 100, on a line by itself denoting the number of events. After that follow N lines giving the start and end times of each event, in hh:mm-hh:mm 24-hour format. The end time is guaranteed to be strictly after the start time. Input is followed by a single line with N =0, which should not be processed.

Выходные данные

For each test case, print out a single line that says "conflict" (no quotes) if Elaine's events have conflicting times, and "no conflict" (no quotes) otherwise. Assume that Elaine can travel around campus instantaneously, so if an event starts at the same time another event ends, the two events do not conflict.

Пример

Входные данные #1
3
09:00-09:50
13:00-17:00
09:50-10:30
2
10:00-11:00
09:00-12:00
0
Выходные данные #1
no conflict
conflict