diff --git a/sample2.mc b/sample2.mc new file mode 100644 index 0000000000000000000000000000000000000000..3ef49a760136822b90fb9e993695a4fda73a8afd --- /dev/null +++ b/sample2.mc @@ -0,0 +1,15 @@ +a=10; +b=20; +c=30; +d=40; +if(a<b) +{ + if(c<d) + max = a; + else + max = b; +} +else + max = c; + +print max;