Cod sursa(job #1587367)

Utilizator RobinBOYOAndrei Pop RobinBOYO Data 1 februarie 2016 22:59:53
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <stdio.h>
#include <stdlib.h>



int main()
{
	int a, b, sum;
	scanf("%d", &a);
	scanf("%d", &b);
	sum = a + b;
	if (sum <= 2000000000);
	printf("%d\n", sum);
	system("pause");
	return 0;
}