Cod sursa(job #1229683)

Utilizator aschiporGheorghe Adrian Schipor aschipor Data 17 septembrie 2014 22:14:00
Problema A+B Scor 100
Compilator c Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <stdio.h>

int main()
{
	FILE *fd;
	int a, b, res;

	fd = fopen("adunare.in", "r");

	fscanf(fd, "%d", &a);
	fscanf(fd, "%d", &b);

	fclose(fd);

	fd = fopen("adunare.out", "w");

	res = a + b;

	fprintf(fd, "%d", res);

	return 0;
}