Cod sursa(job #634378)
Utilizator | Data | 16 noiembrie 2011 03:19:07 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <stdio.h>
#include <stdlib.h>
int main()
{int a,b,s;
scanf("%d %d",&a,&b);
s=a+b;
printf("produsul celor doua numere este %d\n",s);
system("PAUSE");
return 0;
}