Cod sursa(job #365530)

Utilizator stef2503Stefan Stan stef2503 Data 18 noiembrie 2009 23:16:14
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <stdio.h>
using namespace std;

int main ()
{
	int a, b, s;
	scanf ("%d", &a); printf("\n");
	scanf ("%d", &b);
	s=a+b;
	printf("%d", s);
	return 0;
}