Cod sursa(job #320775)

Utilizator yaxleyyaxley yaxley Data 5 iunie 2009 20:07:56
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 3 kb
#include<stdio.h>
long int 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;
}