Cod sursa(job #221231)
Utilizator | Data | 15 noiembrie 2008 00:05:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<iostream.h>
#include<conio.h>
void main(){
int a,b,s;
cin>>a>>b;
s=a+b;
cout<<"suma este "<<s<<endl;
getch();
}