Cod sursa(job #1178513)

Utilizator CodrinsahCotarlan Codrin Codrinsah Data 26 aprilie 2014 20:37:50
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;
ifstream fi ("a+b.in");
ofstream fo ("a+b.out");
int a,b;
int main()
{
    fi>>a>>b;
    fo<<a+b;
    return 0;
}