Friday, January 29, 2016

Java Stdin and Stdout 1

import java.util.*;

public class Solution {

    public static void main(String[] args) {
      Scanner sc=new Scanner(System.in);
      int a=sc.nextInt();
        int b=sc.nextInt();
        int c=sc.nextInt();
      //Complete this line
      //Complete this line
       
      System.out.println(a);
         System.out.println(b);
         System.out.println(c);
      //Complete this line
      //Complete this line
     
   
    }
}

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)