#include <stdio.h>
int main() {
FILE *fptr;
fptr=fopen("Sum.txt","r");
int a;
fscanf(fptr,"%d",&a);
int b;
fscanf(fptr,"%d",&a);
fclose(fptr);
fptr=fopen("Sum.txt","w");
fprintf(fptr,"%d",a+b);
fclose(fptr);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: