Cod sursa(job #1654528)

Utilizator NegreanVictorNegrean Victor NegreanVictor Data 17 martie 2016 10:26:56
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
   ifstream inf ("input.in");
   ofstream outf ("output.out");
   
   int a, b; inf >> a >> b;
   outf << a + b;
}