import java.io.*;
class Notepad
{
public static void main(String[] args)
{
Runtime r = Runtime.getRuntime();
try {
r.exec("notepad");
}
catch (IOException e)
{
System.out.println(e);
}
}
}
class Notepad
{
public static void main(String[] args)
{
Runtime r = Runtime.getRuntime();
try {
r.exec("notepad");
}
catch (IOException e)
{
System.out.println(e);
}
}
}