#include #include #include "color.h" using namespace std; int main() { const color red(255, 0, 0); const color green(0, 255, 0); const color blue(0, 0, 255); const color yellow1 = red + green; color yellow2 = (red + green) / 2; yellow2 *= 1.1; //means yellow2 = yellow2 * 1.1; if (yellow1 == yellow2) { cout << "equal\n"; } else { cout << "unequal\n"; } cout << "
\n" << "" << "Hello, there!" << "\n"; return EXIT_SUCCESS; }