Cod sursa(job #2629750)

Utilizator Same1902Moldovan Andrei Gheorghe Same1902 Data 22 iunie 2020 15:59:49
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.17 kb


#include <iostream>
#include<fstream>
using namespace std;
ifstream in("Sum.in");
ofstream out("Sum.out");
int main()
{
   int a,b;
   in>>a>>b;
   out<<a+b;

    return 0;
}