Cod sursa(job #691243)
Utilizator | Data | 26 februarie 2012 11:23:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
int A,B;
ifstream f("adunare.in.txt");
ofstream g("adunare.out.txt");
f>>A>>B;
g<<(A+B);
return 0;
}