Kirti is new to programming and she doesn't know how to code. Can you write a code, which would print "Hello Kirti" on the screen.
SAMPLE INPUT
SAMPLE OUTPUT
Hello Kirti
Solution-
import java.util.*;
class Hello{
public static void main(String[] args) {
System.out.println("Hello Kirti");
}
}
Post a Comment