Cod sursa(job #942441)

Utilizator mihai.ciorobeaCiorobea Mihai mihai.ciorobea Data 22 aprilie 2013 17:02:57
Problema A+B Scor 100
Compilator c Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <stdio.h>

int main(){
	FILE *read = fopen("adunare.in", "rt");
	unsigned int a, b;

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

	fclose(read);

	FILE *write = fopen ("adunare.out","w+");
	fprintf (write, "%d", a+b);
	fclose(write);
}