Cod sursa(job #250940)

Utilizator gh09chisinau gheorghita gh09 Data 1 februarie 2009 13:32:05
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;
    }