Cod sursa(job #320770)

Utilizator yaxleyyaxley yaxley Data 5 iunie 2009 19:59:45
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 3 kb
#include<stdio.h>
long a,b;

int main()

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