結果
| 問題 | 
                            No.5000 特殊ジャッジテスト(テスト用)
                             | 
                    
| ユーザー | 
                             mits58
                         | 
                    
| 提出日時 | 2015-07-18 00:00:20 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 117 ms / 5,000 ms | 
| コード長 | 251 bytes | 
| コンパイル時間 | 2,974 ms | 
| 実行使用メモリ | 24,588 KB | 
| スコア | 2,996 | 
| 最終ジャッジ日時 | 2018-03-12 00:01:53 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge6 / | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 4 | 
ソースコード
import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int n=sc.nextInt();
        	System.out.println(2+" "+(n-2));
        }
    }
}
            
            
            
        
            
mits58