Cod sursa(job #1168797)
Utilizator | Data | 9 aprilie 2014 16:49:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
fstream in("adunare.in");
ofstream out("adunare.out");
int main(){
int a,b;
in >>a>>b;
out<<(a+b);
}