Cod sursa(job #1567846)
Utilizator | Data | 13 ianuarie 2016 19:35:07 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream in("suma.in");
ofstream out("suma.out");
int a,b,c;
in>>a>>b;
c=a+b;
out<<c;
in.close();
out.close();
}