Cod sursa(job #1018146)
Utilizator | Data | 28 octombrie 2013 22:07:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <stdio.h>
int main()
{
int a, b;
scanf("%d", &a);
scanf("%d", &b);
printf("%d", a+b);
return 0;
}