blob: a12ce406cf29f5ebb2954b6d8926f074538eb267 [file] [log] [blame]
#include <robot>
int CppTest {
string name;
string speaker;
int classification;
cout << "Enter robot name: ";
cin >> name;
cout << "Enter robot speaker a name: ";
cin >> speaker;
cout << "Enter robot speaker b classification: ";
cin >> classification;
}