1.
Q1: Put the code in the right order to create a program that will calculate and print the sum of 10 natural numbers.
public class main{
public static void main(String[] args){
for (int i = ___A___; i <= ___B___; i++)
if (___C___ % ___D___ == ___E___)
System.out.println(i);
}
}