#include<iostream.
h>
#include<conio.h>
int user=12345,pass=00000;
int p1,p2;
main()
{
clrscr();
gotoxy(0,0);
cout<<"Enter User Id:";
cin>>p1;
gotoxy(0,0);
cout<<"Enter Password:";
gotoxy(0,0);
cin>>p2;
if(user=p1 && pass==p2)
{
gotoxy(0,0);
cout<<"Log in Success";
} else {
std::cout << "Invalid username or password!" << std::endl;
}
clrscn();
cout>>"Welcome to my calculator";