9、10、13行目のエラー「タイプ'std:istream'の左側のオペランドをとる演算子が見つかりません(または受け入れ可能な変換がありません'」
#include <stdafx.h> // I should have put #include "stdafx.h" instead
#include <iostream> // My mistake was I didn't #include <string>
using namespace std;
int main()
{
cout << "This is the left step bitwise operation\n";
string x;
cin >> x; // line 9
cout << "You typed" << x; //line 10
string y;
cout << "Enter second number please!";
cin >> y; // line 13
cin.get();
return 0;
} // line
私の漠然とした推測は、私が何かを#includeしなかったということです