Cod sursa(job #250911)

Utilizator gh09chisinau gheorghita gh09 Data 1 februarie 2009 11:48:23
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
# include <cstdio>

# define FIN "adunare.in"
# define FOUT "adunare.out"

int A, B;

     int main()
     {
        freopen(FIN,"r",stdin);
        freopen(FOUT,"w",stdout);
        scanf("%d %d",&A,&B);
        printf("%d",A + B);
        return 0;
     }