In this article, we will cover some basic syntax of Kotlin. Like for, dowhile and while loop, if and when control operator, downTo , step , in and its use. These are first and the very basic concept of any programming language. Using the if control operator in Kotlin If the conditional operator in Kotlin is similar to the java and it can be used in the same as like into the java only difference as normal is that we don't require ";" operator at the end of every line. var a=11 var b=20 if(a < b){ println("$a is less then $b" ) } Output:- 11 is less then 20 Using the if with else control operator in Kotlin we can use the traditional if else statement like we use in the java and syntax for this as given below. println("Enter the number:") var c = readLine() var a=c!!.toInt() var b=20 if(a < b){ println("$a is less then $b" ) } else{ println("$a is greater then $b")...