Untitled

mail@pastecode.io avatar
unknown
plain_text
3 years ago
392 B
0
Indexable
Never
import java.io.*;
import java.util.Scanner;
import java.util.concurrent.*;

public class IO {
    public static void main(String[] args) {
        String s = new String();
        s = "zdravo";
      try {
          System.out.write(s.getBytes());
      }
      catch (IOException e) {
          e.printStackTrace();
      }
      finally {
            System.out.close();
      }

    }


}