Cod sursa(job #21118)
Utilizator | Data | 22 februarie 2007 21:59:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
//acest program aduna doua numere//
#include<iostream.h>
#include<conio.h>
void main()
{long int a,b,s;
cout<<"dati doua numere ";
cin>>a>>b;
s=a+b;
cout<<s;
getch();}