import java.util.*;
public class Main
{
//It’s Day 1 of beginners week, so we’d be remiss to not include a classic hello world challenge!
// Write code to say “hello, world!” in any language of your choosing.
// Share you hello, world code with us on our Devpost.
public static void main(String[] args) {
System.out.println("Hello World");
}
}