Cod sursa(job #1489722)

Utilizator Ada45Alexandra Udrescu Ada45 Data 21 septembrie 2015 21:59:21
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream>
using namespace std;
ifstream f("fractii.in");
ofstream g("fractii.out");
int main(){
    int a,b;
    f>>a>>b;
    g<<a+b;

}