Initial commit

This commit is contained in:
code-clash
2020-04-01 23:11:12 +02:00
commit 7562c5ab33
17 changed files with 515 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import java.util.*;
import java.io.*;
import java.math.*;
/**
* Template code to help you parse the standard input
* according to the problem statement.
**/
class Solution {
public static void main( String[] args ) {
Scanner in = new Scanner( System.in );
// read values with in.next...() methods
// code your solution here
// Write result with System.out.println()
System.out.println( "value" );
}
}

View File