#include <iostream>
using namespace std;
int main()
{
cout << "enter" << endl;
int a,b;
cin >> a >> b;
cout << a << " " << b << endl;
return 0;
}
in the code given above when the input is
INPUT:
45 12
OUTPUT:
45 12
but now let say input is
INPUT:
45 s12
OUTPUT:
45 134514832
from where i am getting this long number 134514832