Exercise 4.10 Write the condition for a while loop that would read ints from the standard input and stop when the value read is equal to 42. Solution while (cin >> i && i != 42)