Cod sursa(job #612817)

Utilizator SpiderManSimoiu Robert SpiderMan Data 10 septembrie 2011 13:27:01
Problema A+B Scor 100
Compilator cpp Status done
Runda test_info20 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 ;
}