Cod sursa(job #586408)

Utilizator fricCalin Paul Alexandru fric Data 30 aprilie 2011 23:12:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<stdio.h>

int main()
{
	freopen("adunare.in", "r", stdin);
	freopen("adunare.out", "w", stdout);

	int a,b;

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

	return 0;
}