Se citesc 2 numere naturale de exact 3 cifre. Sa se afiseze suma dintre rasturnatele celor 2 numere.

Răspuns :

Răspuns:

#include <iostream>

using namespace std;

int main()

{

   int a,b;

   cin>>a>>b;

   int ogl1=0,ogl2=0;

   while(a)

   {

       ogl1=ogl1*10+a%10;

       a=a/10;

   }

   while(b)

   {

       ogl2=ogl2*10+b%10;

       b=b/10;

   }

   cout<<ogl2+ogl1;

   return 0;

}