Cod sursa(job #749882)

Utilizator SpiderManSimoiu Robert SpiderMan Data 19 mai 2012 14:58:53
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.19 kb
# include <fstream>
using namespace std ;

int a, b ;

int main ( void ) {
    ifstream f ( "adunare.in" ) ;
    ofstream g ( "adunare.out" ) ;

    f >> a >> b ;
    g << a + b ;
}