Cod sursa(job #2035020)

Utilizator angelbejinaruAngel Bejinaru-Manoila angelbejinaru Data 8 octombrie 2017 20:35:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include<fstream>
using namespace std;
int a,b;
int main()
{
ifstream f("a+b.in");
ofstream g("a+b.out");
f>>a>>b;
g<<a+b;
}