Cod sursa(job #1223324)

Utilizator unixcellUnix Cell unixcell Data 27 august 2014 16:07:04
Problema A+B Scor 100
Compilator c Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <stdio.h>



int main(void) {

	// your code goes here

	

	freopen("adunare.in","r",stdin);

	freopen("adunare.out","w",stdout);


	
	int a,b;


	
	scanf("%d%d", &a, &b);

	
printf("%d", a + b);


	
	return 0;

}