結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー uni_pythonuni_python
提出日時 2020-04-03 23:46:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 71,588 KB
最終ジャッジ日時 2023-09-16 05:03:45
合計ジャッジ時間 1,027 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    a,b=MI()
    s=input()
    print(a+b)
    print(s)
    


main()
0