Cod sursa(job #209170)
Utilizator | Data | 21 septembrie 2008 10:42:27 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.11 kb |
#include <stdio
.h>
int main()
{
int a,b,s;
scanf("%d%d",&a,&b);
s=a+b;
printf("%d",s);
return 0;
}