Pagini recente » Cod sursa (job #1633754) | Cod sursa (job #2463376) | Diferente pentru happy-birthday-infoarena-2014 intre reviziile 2 si 10 | Cod sursa (job #2263906) | Cod sursa (job #792315)
Cod sursa(job #792315)
#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;
}