So I know that this is super simple, and I'm sorry for having to ask this on here. Unfortuntely, I am confused and have no one else to ask...
Anyway, I'm trying to use Java to solve the following equation:
 __________________
√ (3.1^17 + 2.7^11)
The code that I have right now doesn't work. It is:
public class Math
{
    public static void main(String[] args)
    {
        double a = 3.1
        double b = 2.7;
        double c = Math.sqrt(Math.pow(a,17) + Math.pow(b,11));
        System.out.println(c); 
   }
}