Write a Java code as the instructions in the comments // Perform arithmetic operations with different data types // Declare two int variables: a = 10, b = 3 // Calculate and print: a + b, a - b, a * b, a / b, a % b // Notice what happens with integer division