I feel like I approached this the most basic way possible. Is there a better way I could have approached this? public static void main(String[] args) { //write your code here int a = 1; int b = 2; int c = 3; int d = 4; int e = 5; int f = 6; int g = 7; int h = 8; int i = 9; int j = 10; int s = (a*b*c*d*e*f*g*h*i*j); System.out.println(s); }