package Beginning; public class practice { public static void main(String[] args){ int age; age=19; // we can also write it as int age=19; then we can get the same output as before System.out.println(" I am "+age+" years old."); } }