import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); boolean b = true; for(int i=1; i<=10; i++){ int tmp = sc.nextInt(); if(b&&tmp!=i){ System.out.println(i); b=false; } } } }