// p03_08.cpp: Using the operators << and + to multiply by 100.
#include <iostream>
using namespace std;

int main() {

int x, y;
cout << "x  = ";
cin >> x;
y = (x << 6) + (x << 5) + (x << 2);
if (x >0 && y < x || x < 0 && y > x)
 cout << "Take a number smaller for x.\n";
else
 cout << "100x = " << y << endl;
return 0;
}
