Cod sursa(job #2262189)
Utilizator | Data | 17 octombrie 2018 08:16:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a;
f>>b;
g<<a+b;
}