#include using std::cout;using std::endl;#include using std::atol;int main(){ long x = atol( "1000000" ); cout << x / 2 << endl; return 0;} 500000