結果

問題 No.1527 Input Constant is Good
ユーザー rainy
提出日時 2021-06-07 11:14:31
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 27,136 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 13:10:52
合計ジャッジ時間 660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(void){
    int A,B;
    scanf("%d%d", &A,&B);
    if(A <= B){
        printf("Yes");
    }else{
         printf("No");
    }
}
0