Cod sursa(job #2209230)

Utilizator ValentinStStamate Valentin ValentinSt Data 2 iunie 2018 14:01:46
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()
{
   ifstream in("data.in");
   ofstream out("data.out");
   int a,b,s;
   in>>a>>b;
   s=a+b;
   out<<s;
   return 0;
}