#include <iostream>
#include <fstream>
#include <string>
#include <locale.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "ru");
string Path = "grades.txt";
ofstream studentG("grades.txt");
studentG.open("grades.txt");
studentG << "Тест";
studentG.close();
}