Answer:
i have no idea what the answer is
Explanation:
Answer:No
Explanation:Chel was supposed to say hi at the end of portal 2 but didn’t cuz of portal jumping
Answer:
Unblock websites using a VPN. Using a VPN is the easiest and most reliable way to get around content blocks and unlock the URL you want. …
Unblock websites using Tor. …
Unblock websites using a web proxy. …
Unblock websites using a proxy extension.
Explanation:
Have you tried those? Otherwise the next thing is to log in and unblock it, but you dont have the log in....
Program to display greater number:
#include <iostream> <em>// Needed to perform IO operations </em>
#include<conio.h> <em> // header file</em>
using namespace std;
int main() //start of the program
{
int a , b =0; //initialising the two integer variable
cout<< "Enter first number"<<endl;
cin >> a; //user's first number
cout<< "Enter second number"<<endl;
cin >> b; //user's second number
if (a>b) //comparing the two integers input by user
cout<< a << "is greater than" << b; //display the greater number
else
cout<< b << "is greater than" << a;
return 0; // exist
}