Cod sursa(job #689199)

Utilizator spidy1Radu Dacian spidy1 Data 24 februarie 2012 10:46:33
Problema A+B Scor 100
Compilator c Status done
Runda Arhiva de probleme Marime 0.2 kb

#include <stdio.h>

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