forked from code-clash/look-and-say
17 lines
323 B
Java
17 lines
323 B
Java
import java.util.*;
|
|
import java.io.*;
|
|
import java.math.*;
|
|
|
|
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" );
|
|
}
|
|
}
|