JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Program
{
public static void main(String[] args)
{
int a=4;
int b=8;
if((b-a--)>=a)
{
System.out.println(a*b);
}
else
{
System.out.println(a+b);
}
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run