#include <iostream>
#include <cstdlib>
#include <string>

using namespace std;

int main() {
	// your code goes here
	std::string m_fileName = "whatever.bin";
	FILE * file = fopen(m_fileName.c_str(), "rb");
	if ( file )
	    fclose(file);
	return 0;
}