#include <iostream>
#include <sstream>
using namespace std;
int wmain(int argc, wchar_t** argv)
{
ostringstream out;
out << 3000 << endl;
std::cout << out.str();
system("pause");
return 0;
}
#include <iostream>
#include <sstream>
using namespace std;
int wmain(int argc, wchar_t** argv)
{
ostringstream out;
out << 3000 << endl;
std::cout << out.str();
system("pause");
return 0;
}