val num = 256

if (num is Int) {
		print(num) //256
}
else if (num !is Int) {
		print("Not a Int")
}