#include using namespace std; int main() { cout << "Hello maniac" << endl; // Hello manaic と表示する。 int iValue = 0; cin >> iValue; // iValue を入力する。 cerr << "iValue = " << iValue << endl; // iValue を表示する。 return 0; }