Cod sursa(job #1739321)
Utilizator | Data | 9 august 2016 11:27:43 | |
---|---|---|---|
Problema | Text | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <cassert>
#include <fstream>
using namespace std;
const int LEN = 2000000;
ifstream fin("text.in");
ofstream fout("text.out");
char a[LEN];
int main() {
fin.getline(a, LEN);
assert(strlen(a) > 0);
return 0;
}