6 lines
189 B
Text
6 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"]]
|