Cod sursa(job #1227243)

Utilizator YshmaelIordache Madalin Yshmael Data 9 septembrie 2014 18:51:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    int x,y;
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    f>>x>>y;
    g<<x+y;
    return 0;
}