Cod sursa(job #534642)

Utilizator RobertBBadea Corneliu Robert RobertB Data 15 februarie 2011 22:09:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;



int main()
{
    int A,B;
    ifstream citire("adunare.in");
    ofstream scriere("adunare.out");
    citire>>A>>B;
    scriere<<A+B;
}