Cod sursa(job #1131358)
Utilizator | Data | 28 februarie 2014 19:35:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int x,y;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>x>>y;
g<<x+y;
for(int i=1;i<=10000000;i++){
cout<<endl;
}
return 0;
}