結果

問題 No.2533 A⇒B問題
ユーザー ttkkggww
提出日時 2023-11-10 21:49:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 4,054 ms
コンパイル使用メモリ 251,192 KB
最終ジャッジ日時 2025-02-17 20:37:43
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
ll a,b;

void solve(){
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
  cin >> a >> b;
  if((a&b)==a){
    cout<<"Yes"<<endl;
  }else{
    cout<<"No"<<endl;
  }
	solve();
}
0