The Simple Programming Problem

 Hello, Korona batch, 

Welcome to the world of Programming. This is the easiest question of the world you have ever seen (okay, I know, Korona couldn't let you see the beauty of IIIT-A and couldn't let you go to the PMC :p). Just print here "Go Korona Go" (without quotes) to kick off the Covid-19 from this beautiful world.

Example:

Output: Go Korona Go

Approach

Java


class TestClass {
    public static void main(String args[] ) throws Exception {
        System.out.println("Go Korona Go");
    }
}

C++

#include <bits/stdc++.h>
using namespace std;

int main()
{
    cout << "Go Korona Go\n";

    return 0;
}


No comments:

Post a Comment