Cod sursa(job #1706922)
Utilizator | Data | 23 mai 2016 20:34:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include <stdio.h>
using namespace std;
int main()
{
FILE *in_file, *out_file;
in_file=fopen("adunare.in","r");
out_file=fopen("adunare.out","w");
long long int a,b;
fscanf(in_file,"%lld %lld",&a,&b);
fprintf(out_file,"%lld \n",a+b);
return 0;
}