Cod sursa(job #437504)
Utilizator | Data | 9 aprilie 2010 20:20:27 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream>
using namespace std;
int main()
{
int x,y,z;
x=10;
y=12;
z=x+y;
cout<<x<<'\n';
cout<<y<<'\n';
cout<<z<<'\n';
system("pause");
return 0;
}