Cod sursa(job #626738)
| Utilizator | Data | 28 octombrie 2011 09:21:22 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.12 kb |
#include <cstdio>
int main ()
{
int a,b,c;
scanf("%d %d", &a, &b);
c=a+b;
printf("%d", c);
return 0;
}