import java.util.Scanner; public class FirstClass { public static void main(String[] args) { // Scanner is a Buffer , and it store the data which is coming from // System.in int a=10; // Local Var int b=20; int c = a + b; /* Scanner scanner = new Scanner(System.in); System.out.println("Enter the First Number"); int a = scanner.nextInt(); System.out.println("Enter the Second Number"); int b = scanner.nextInt();*/ //int c= a + b; System.out.println("परिणाम यह है "+c); //scanner.close(); } }