import "dart:math";
import "dart:io";
void main(){
print("enter first number");
double num1 = double.parse(stdin.readLineSync());
print("enter second number");
double num2 = double.parse((stdin.readLineSync());
print (
num1 + num2
);
}
Why it doesnt compile
Enter two numbers from the user add them and the program returns their sum.