Java Stdin and Stdout I

  • + 0 comments

    //What is up, this is my second HackerRank thing, hope y'all like dis.

    import java.util.*;

    public class Solution {

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

    }