Cod sursa(job #999136)
Utilizator | Data | 19 septembrie 2013 13:27:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
long int a,b;
in >> a >> b;
out << a+b;
}