#include <iostream>
#include <string>
#define PATH_RESOURCES "/path/to/resources/"
using namespace std;

int main() {
	string s(PATH_RESOURCES "textures.dat");
    cout << s << endl;
	return 0;
}