import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
    public static void main(String[] args) {
        
        // 5 types of Operators 
        
 
       //Arithmetic operators
 
            int a=5
            int sum = 5+4
      
      
        // assignment operators
       
            int a = 4
            int b = a+9 //out 13
            ///or
            int x = 7
            x + =3  //out  10
           
        // comparison operator 

            Sout(64==64) //out true
            sout(65==56) // false out
            sout (64>7)// out true
 
      
        //logical operators
          
            sout(64>5 && 64>98) // out false
            // isme saare sahi tb hi true hoga 
            // ek bhhi condition false sab false 
  
   
   
   
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: