package main

import "fmt"

func main() {
	var num int

	// Prompt user to enter a number
	fmt.Print("Enter a number: ")
	fmt.Scanln(&num)

	// Check if the number is two digits or not
	if num >= 10 && num <= 99 {
		fmt.Println("The number", num, "is two digits.")
	} else {
		fmt.Println("The number", num, "is not two digits.")
	}
}
