Cod sursa(job #1430544)
| Utilizator | Data | 8 mai 2015 16:23:30 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main(int atgc,char** argv){
ifstream in("adunare.in");
ofstream out("adunare.out");
int a, b;
in >> a >> b;
out << (a+b);
in.close();
out.close();
return 0;
}
