खडकवासला हे धरण कोणत्या जिल्हा क्षेत्रात आहे
Answers
Answered by
3
Answer:
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Demo
{
public static void main (String[] args) throws java.lang.Exception
{ int a = 6;
int b = 7;
int c = a*b;
System.out.println("c"+"="+c);
}
}
Similar questions