How can I cout 1 or 2 in C++? I would like to cout 1 or 2(randomly choose between them). What do I have to change to work well ? This is not working, because it cout only the 1 number.
#include <iostream>
using namespace std;
int main()
{ cout << "1" || "2";
return 0;
}