#include <iostream> 
#include <string>   
using namespace std;     

int main() 

{

int a, b;

cout << "Enter the value of A" << endl; 

cin >> a;

cout << 'Enter the value of B' << endl;

}	