/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package listaexercicios;

/**
 *
 * @author awolf
 */
public class Questao14 {

    public static void main(String[] args) {
        int n1 = 0;
        int n2 = 1;
        int n3 = 1;

        System.out.println(n1);
        System.out.println(n2);
        System.out.println(n3);

        int soma = 0;
        while (n1 + n2 + n3 < 170) {
            soma = n1 + n2 + n3;
            System.out.println(soma);
            n1 = n2;
            n2 = n3;
            n3 = soma;
        }
    }
}
