Cod sursa(job #1704670)

Utilizator andreiSevastreAndrei Sevastre andreiSevastre Data 19 mai 2016 10:47:43
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <stdlib.h>
#include <stdio.h>

int main ()
{   int a,b;
	freopen ("adunare.in", "r", stdin);
	freopen ("adunare.out", "w", stdout);
	
	scanf("%d", &a);
	scanf("%d", &b);
	printf("%d\n", a+b);
	
	return 0;
}