Cod sursa(job #1727878)
Utilizator | Data | 11 iulie 2016 20:03:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b;
in>>a;
in>>b;
int s=a+b;
out<<s;
in.close();
out.close();
}