Can anyone tell me that is wrong plz ...Java
import java.util.Scanner; public class calculater { public static void main(String[ ] args) { Scanner input=new Scanner (System .in); System .out.println ("Enter 1st num"); int a=input.nextInt(); System .out.println ("Enter 2st num"); int b=input.nextInt(); System .out.println ("Enter operation"); String op=input.next(); int z; if(op.equals("+")){ z=a+b; } if(op.equals("+")){ z=a+b; } else if(op.equals("-")){ z=a-b; } else if(op.equals("*")){ z=a*b; } else if (op.equals("/")){ z=a/b; } System .out.println ("The result is"+ z); } }