Cod sursa(job #209168)
Utilizator | Data | 21 septembrie 2008 10:36:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.08 kb |
#include <iostream.h>
void main()
{
int a,b,s;
cin>>a>>b;
s=a+b;
cout<<s;
}