is_student = True
age = 21
if is_student and (age < 18 or age >= 18):
print("You can borrow a book from the university library")
#Python
xxxxxxxxxx
const is_student = true
const age = 21
if (is_student && (age < 18 || age >= 18)) {
console.log("You can borrow a book from the university library");
}
//JavaScript
public class Main {
public static void main(String[] args) {
boolean is_student = true;
int age = 21;
System.out.println("You can borrow a book from the university library");
//Java
#include <iostream>
using namespace std;
int main() {
bool is_student = true;
cout << "You can borrow a book from the university library";
return 0;
//C++