Cod sursa(job #1490945)
Utilizator | Data | 24 septembrie 2015 15:17:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int mat[103][103];
int main(){
int a,b;
in>>a>>b;
in.close();
out<<a+b;
out.close();
}