import java.util.Scanner; import javax.xml.namespace.QName; // https://yukicoder.me/problems/no/481 public class OneToTen481 { public static void main(String[] args) { // 標準入力から読み込む際に、Scan Scanner sc = new Scanner(System.in); // String 1つ分を読み込む int result = 0; while (result < 10) { int s1 = Integer.parseInt(sc.next()); result += 1; if (s1 != result) { // 標準出力に書き出す。 System.out.println(result); } ; } } }