Cod sursa(job #1250967)
Utilizator | Data | 28 octombrie 2014 20:12:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include<iostream>
#include<fstream>
using namespace std;
int a,b,c;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> a;
fin >> b;
c = a + b;
fout << c;
return 0;
}