Skip to content

Commit

Permalink
Merge pull request #123 from oskarikotajarvi/master
Browse files Browse the repository at this point in the history
Added stdin and stdout 1 challenge solution.
  • Loading branch information
ows-ali authored Oct 23, 2018
2 parents 5518fc7 + 8b66e57 commit b9d9f93
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Hackerrank/STDIN_AND_STDOUT_I.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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();

System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ In this repository, you can find the solutions (as source code) for the problems
| [arvydasdev](https://github.com/arvydasdev/) <br> <img src="https://avatars.githubusercontent.com/arvydasdev" width="100" height="100"> | Lithuania | Java | |
| [Dhiego Bersan](https://github.com/dhiegomaga/) <br> <img src="https://avatars0.githubusercontent.com/u/25873377?s=460&v=4" width="100" height="100"> | Brazil | | |
| [Nishita Dutta](https://github.com/nish-d) <br> <img src="https://avatars1.githubusercontent.com/u/15178729?s=460&v=4" width="100" height="100"> | India | C++ | https://www.codechef.com/users/nish_d |

| [Oskari Kotajärvi](https://github.com/oskarikotajarvi) <br> <img src="https://github.com/oskarikotajarvi.png" width="100" height="100"> | Finland | Java | |
### License

[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://github.com/ows-ali/Hacktoberfest/blob/master/LICENSE)
Expand Down

0 comments on commit b9d9f93

Please sign in to comment.