Cod sursa(job #2426140)

Utilizator gsv472002Valentin Gheoace gsv472002 Data 26 mai 2019 13:21:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;

ifstream in("adunare.in");
ofstream out("adunare.out");

int main(){
    int a,b;
    int s=0;
    in>>a>>b;
    s=a+b;
    out<<s;
    return 0;
}