RosettaCodeData/Task/Integer-comparison/Mathematica/integer-comparison.math

6 lines
189 B
Plaintext

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"]]