Skip to content

Commit

Permalink
Create soln.java
Browse files Browse the repository at this point in the history
  • Loading branch information
rutujar authored Oct 22, 2018
1 parent dfc3997 commit 622b304
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Java/Introduction/Java Stdin and Stdout I/soln.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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();
scan.close();

/* Print data */
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}

0 comments on commit 622b304

Please sign in to comment.