Cod sursa(job #792311)
Utilizator | Data | 26 septembrie 2012 21:28:18 | |
---|---|---|---|
Problema | Invers | Scor | 0 |
Compilator | cpp | Status | done |
Runda | asem-etapa1 | Marime | 0.34 kb |
#include <iostream>
#include <stdlib.h>
#include <fstream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
ifstream fin("invers.in");
ofstream fout("invers.out");
long int t;
while(fin>>t)
{
fout<<"DA\n";
}
return 0;
}