Cod sursa(job #589023)

Utilizator Agent008Cristi Poputea Agent008 Data 10 mai 2011 17:18:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include<iostream.h>
#include<fstream.h>
#include <stdio.h> 
int a,b;
int main()
{
	freopen("adunare.in", "r", stdin);
    freopen("adunare.out", "w", stdout); 
    scanf("%d %d", &a, &b);
	printf("%d\n", a+b);
	return 0;
}