Assuming appropriate includes and given the following statements:
int age;
char ch;
string name;
cin ≫ age;
cin.get(ch);
getline(cin, name);
and provided the following one line of input:
The value of age will be 23 and the value of name will be "Lance".
A. True
B. False