对于循环到右侧?

public class Envelope{
    public static int width = 80;
    public static int height = 10;
    public static int distance = 40;

    public static void main(String[] args) {


        for(int i =0; i < 1; i++) {
            System.out.println("+");
            for(int b = 1; b<=width; b++) {

                System.out.println("-");
            }
            for(int a=1; a<height; a++) {
                System.out.println("|");
                }
                for(int c = 11; c < 12; c++) {
                    System.out.println("+");
                }

            }
        }
    }

所以我的问题是如何在加号后面加上符号“-”,但是该“-”必须向右移动80次。