#include <iostream> using std::cout; using std::endl; #include <cstdlib> using std::atof; int main() { double d = atof( "99.0" ); cout << d / 2.0 << endl; return 0; }
49.5