#include <iostream>
using namespace std;

int main() {
	char file[] = 
	{
		#ifdef _WIN32
			"C:\\Users\\far\\Desktop\\hello.txt"
		#else
		    "C:/Users/far/Desktop/hello.txt"
		#endif
	};
	cout << file << endl;
	return 0;
}