結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー Matumo
提出日時 2018-07-13 02:00:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 258 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 75,832 KB
実行使用メモリ 54,804 KB
最終ジャッジ日時 2024-10-05 00:08:14
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		String s = sc.next();

		System.out.println((a + b) + " " + s);
    }
}
0