#23981:


10730773 (unknown)

學校 : 不指定學校
編號 : 142592
來源 : [223.137.3.133]
最後登入時間 :
2021-01-13 08:43:46
a273. 小朋友下樓梯 | From: [223.137.40.10] | 發表日期 : 2021-01-06 20:56

#include <iostream>

using namespace std;

int main() {

  int n,k;

  while (cin >> n){

    cin >> k;

    if (n!=0 && k==0 ) cout << "Impossib1e!"<<endl;

    else if (n%k == 0 ) cout <<"Ok!"<<endl;

    else if (n==0 && k==0) cout << "Ok!"<<endl;

    else cout <<"Impossib1e!"<<endl;

  }

  //system("pause");

}

 

 
ZeroJudge Forum