How could i make a simple math program using Greenfoot? Just want it to be able to add and subtract.
String int1 = new Scanner(System.in).next(); String int2 = new Scanner(System.in).next(); Int restult = ((Int) int1) + ((Int) int2) system.out.println(result);