Suppose x,and y are int variables and ch is a char variable. Assume the following input data:
13 28 D
14 E 98
A B 56
what value is assigned to x,y, and ch after each of the following statements executes?(using the same input for each statement)
a.)cin >> x >> y;
cin.ignore(50, '/n');
cin >> ch;
b.) cin >> x;
cin.ignore(50, '/n');
cin >> y;
cin.ignore(50, '/n');
cin.get(ch);