We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
//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);
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Java Stdin and Stdout I
You are viewing a single comment's thread. Return to all comments →
//What is up, this is my second HackerRank thing, hope y'all like dis.
import java.util.*;
public class Solution {
}