In python, variables do not need to be declared as their datatype is inferred.

In java, variables must be declared with a type. You can assign sum as an int or a double.

You'd also need to...