Skip to content

Instantly share code, notes, and snippets.

@abusoid
Created May 2, 2018 17:33
Show Gist options
  • Save abusoid/926eb38be53482f60e056d52c2d3d891 to your computer and use it in GitHub Desktop.
Save abusoid/926eb38be53482f60e056d52c2d3d891 to your computer and use it in GitHub Desktop.
HackerRank Java Stdin and Stdout I
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int c = scan.nextInt();
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment