Cod sursa(job #365624)

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

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