Răspuns:
In C++:
#include <iostream>
using namespace std;
int main()
{
int x, y;
cout<<x+y<<" "<<x-y<<" "<<x*y;
return 0;
}
In Pseudocod:
Algoritm numere
întreg x și y
s <= x + y
d <= x - y
p <= x * y
Scrie s
Scrie d
Scrie p
sfârșit algoritm
Sper că ai înțeles.
Succes!