Cod sursa(job #964406)
Utilizator | Data | 20 iunie 2013 21:29:22 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main()
{
long long a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a>>b;
out<<a+b;
out.close();
in.close();
return 0;
}