Created
May 2, 2018 17:33
-
-
Save abusoid/926eb38be53482f60e056d52c2d3d891 to your computer and use it in GitHub Desktop.
HackerRank Java Stdin and Stdout I
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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