Problem B
Hraðgreining
Languages
en
is
Most Icelanders have found it hard to miss how many COVID tests have been performed in their country to figure out whether people have Covid or not. At designated testing locations, samples are taken from both the nose and mouth. They are then put into a DNA sequencer which returns a DNA string. This string consists of the letters ACGTOV. This has made it significantly easier to diagnose whether people have Covid, since one only has to check whether the DNA string contains the substring COV. Could you help the employees at the testing location in figuring out whether the DNA string contains the substring COV?
Input
A single line containing the DNA string.
Output
If the DNA string contains the substring COV then print Veikur!, otherwise print Ekki veikur!.
Scoring
Group |
Points |
Constraints |
1 |
40 |
The length of the DNA string is $3$ |
2 |
60 |
The length of the DNA string is at least $3$ and at most $1000$ |
Sample Input 1 | Sample Output 1 |
---|---|
COV |
Veikur! |
Sample Input 2 | Sample Output 2 |
---|---|
COOOV |
Ekki veikur! |
Sample Input 3 | Sample Output 3 |
---|---|
AACOVAA |
Veikur! |