Cod sursa(job #2546391)

Utilizator Alex_AeleneiAlex Aelenei Ioan Alex_Aelenei Data 14 februarie 2020 09:55:53
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <cstdio>

using namespace std ;

int main ()
{
    freopen ( "adunare.in" , "r" , stdin ) ;
    freopen ( "adunare.out" , "w" , stdout ) ;

    int a , b ;

    scanf ( "%d%d" , & a , & b ) ;
    printf ( "%d" , a + b ) ;

    return 0 ;
}