I>#include <iostream> I>using namespace std; I>int main() I>{ I> int i; I> if (cin >> i) I> cout << "i = " << i << '\n'; I> else I> cout << "error\n"; I>} I>