RosettaCodeData/Task/Integer-comparison/Mathematica/integer-comparison.math
2023-07-01 13:44:08 -04:00

5 lines
189 B
Text

a=Input["Give me the value for a please!"];
b=Input["Give me the value for b please!"];
If[a==b,Print["a equals b"]]
If[a>b,Print["a is bigger than b"]]
If[a<b,Print["b is bigger than a"]]