Cod sursa(job #3220121)
| Utilizator | Data | 2 aprilie 2024 15:27:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | c-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *r, *w;
int a,b;
r=fopen("alandala.in","r");
fscanf(r,"%d%d",&a,&b);
w=fopen("alandala.out","w");
fprintf(w,"%d",a+b);
return 0;
}
