Cod sursa(job #320773)

Utilizator yaxleyyaxley yaxley Data 5 iunie 2009 20:05:42
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("%li",&a);
scanf("%li",&b);
printf("%li",a+b);
return 1;
}