Write a dart program to print the result of dividing two numbers

code:

void main() {
  int a = 10;
  int b = 15;
  print(a / b);
}


Output:

Comments