create a simple java Application program that shows the use of FlowLayout to arrange the component from the left side of the window

import java.awt.*;
import javax.swing.*;

public class FltLeft extends JFrame{

    public FltLeft(){
        setLayout(new FlowLayout(FlowLayout.LEFT));
        for(int i=1;i<5;i++)
        add(new JButton(" "+i));
        setSize(500,300);
        setVisible(true);
    }
    public static void main(String args[])
    {
        FltLeft bt = new FltLeft();
        bt.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
    }

}