Cod sursa(job #795312)
Utilizator | Data | 8 octombrie 2012 11:47:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream i("adunare.in");
ofstream o("adunare.out");
int a,b;
i>>a>>b;
o<<a+b;
}