Cod sursa(job #1739323)
Utilizator | Data | 9 august 2016 11:29:23 | |
---|---|---|---|
Problema | Text | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <cassert>
#include <cstring>
#include <fstream>
using namespace std;
const int LEN = 2000000;
ifstream fin("text.in");
ofstream fout("text.out");
int main() {
char c;
fin.get(c);
assert(c != '\n');
return 0;
}