Cod sursa(job #1234453)

Utilizator stefan_gheorgheGheorghe Stefan stefan_gheorghe Data 27 septembrie 2014 13:53:21
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 a,b,s;
ifstream f("A+B.in");
ofstream g("A+B.out");
int main()
{
    f>>a>>b;
    s=a+b;
    g<<s;
    return 0;
}