Bob is trying to live-stream a video in his ICS class! He's learned that colours are represented by a triple
However, this means that sometimes two different colours will, after applying the compression, become the same colour! For example, the colours
Thus Bob asks you: will the given two colours become the same colour after compression?
Input Specification
The first line of input will contain 3 integers,
The second line of input will contain 3 integers,
All integers in the input are in the range
Output Specification
Output Colourful
if the two colours become different colours following the compression algorithm, or Dull
otherwise.
Sample Input 1
1 100 20
1 4 21
Sample Output 1
Colourful
Sample Input 2
1 1 1
1 1 1
Sample Output 2
Dull
Comments