Cod sursa(job #1174435)
Utilizator | Data | 22 aprilie 2014 20:13:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
#include <stdio.h>
using namespace std;
int main()
{
int a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in >> a;
in >> b;
out << a+b;
}