#include <bits/stdc++.h>
using namespace std;
 
int main()
{
	ofstream file("Telegram", ios::in | ios::out);
	
	file << "Something";

	std::string forFile = "Sample";

	file >> forFile;
	
}