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
C Solution#include <stdio.h>
int main(){
printf("Hello Kirti\n");
}
Java Solution
class TestClass {
public static void main(String args[] ) throws Exception {
System.out.println("Hello Kirti");
}
}
C++ Solution
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello Kirti";
return 0;
}

0 Comments