Cod sursa(job #612580)

Utilizator capryStefan capry Data 8 septembrie 2011 20:51:42
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <stdio.h>
long a,b;
int main() {
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
scanf("%ld%ld",&a,&b);
printf("%ld",a+b);
return 0; }