import java.io.*; public class hallo { public static void main(String[] args) throws Exception{ // TODO 自動生成されたメソッド・スタブ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str= br.readLine(); if(str=="S"){ System.out.println("Hallo World!"); } } }