結果

問題 No.1088 A+B Problem
ユーザー vjudge1
提出日時 2023-10-25 08:09:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 26,624 KB
最終ジャッジ日時 2025-02-17 13:32:57
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d", &A);
      |     ~~~~~^~~~~~~~~~
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &B);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main()
{
    int A = 0;
    int B = 0;
    scanf("%d", &A);
    scanf("%d", &B);
    printf("%d", A + B);

    return 0;
}
0