Pagini recente » Cod sursa (job #376824) | Cod sursa (job #2426475) | Cod sursa (job #2805602) | Cod sursa (job #294164) | Cod sursa (job #792306)
Cod sursa(job #792306)
#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"<<endl;
}
return 0;
}