Cod sursa(job #1930511)

Utilizator seajuchirIlie Ionut Gabriel seajuchir Data 18 martie 2017 23:16:06
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()
{int a,b,c;
ifstream f("date.in");
ofstream g("rezultat.out");
f>>a;
f>>b;
c=a+b;
g<<c;
f.close();
g.close();}