package main

import "fmt"

func main() {
    name := "Ali"
    age := 24
    fmt.Printf("My name is %s and I am %d years old.\n", name, age)
}