Cod sursa(job #2129040)
Utilizator | Data | 12 februarie 2018 13:57:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main(){
int a, b;
ifstream in("biti.out");
ofstream out("biti.out");
//########################
in>>a>>b;
out<<a+b;
return 0;
}