Cod sursa(job #2426344)

Utilizator cristiemanuelstroe cristian emanuel cristiemanuel Data 27 mai 2019 15:14:43
Problema A+B Scor 100
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include  <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
     int s=0,a,b;
     f>>a>>b;
     g<<a+b;
     return 0;
}