Cod sursa(job #359881)

Utilizator biroBiro Alexandru biro Data 28 octombrie 2009 17:29:31
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <stdio.h>

int main()
{
    freopen ( "adunare.in" , "r" , stdin) ;
    freopen ( "adunare.out" , "w" , stdout) ;
    int a ,b ,c ;
    scanf( "%d%d" , &a , &b ) ;
    c=a+b ;
    printf ( "%d" , c ) ;
    
    return 0 ;
        
}