Print Letuscrack as the Output

The program must print Letuscrack as the output.

Note: S and R are in upper case.

Python

print('Letuscrack')

C

#include <stdio.h>
#include  <stdlib.h>
int main()
{
    printf("LetusnCrack");
    return 0;
}

C++

#include 
using namespace std;
int main()
{
    cout << "LetusnCrack";
    return 0;
}

Java

import java.util.*;
public class Hello {
    public static void main(String[] args) {
System.out.print("Letus"+"n"+"Crack");
}
}

Leave a Reply

Your email address will not be published. Required fields are marked *

More posts. You may also be interested in.