Cod sursa(job #2204268)

Utilizator rus_david93Rus David rus_david93 Data 15 mai 2018 09:09:19
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;


int main() {

	ifstream f("data.in");
    ofstream g("data.out");
    int a ,b;
    f>>a;
    f>>b;
    g<<a+b;
    return 0;
}