program main implicit none integer::n,m read(*,*)n,m if((m==0.and.n==1).or.(m==0.and.n==2))then print*,"Impossible" else print*,"Possible" end if end program