top of page


#include <stdio.h>


void main() {


int num1, num2, sum;


printf("Enter the first number: ");

scanf("%d", &num1); // Read the first number from the user


printf("Enter the second number: ");

scanf("%d", &num2); // Read the second number from the user

sum = num1 + num2; // Calculate the sum


printf("The sum of %d and %d is %d\n", num1, num2, sum); //Result


}





a, b, c, d, e, f = input('Enter number : ').split()

print('Value of a : ' + a)


print('Value of b : ' + b)


print('Value of c : ' + c)


print('Value of d : ' + d)


print('Value of e : ' + e)


print('Value of f : ' + f)

Updated: Feb 8, 2023



import webbrowser as wb

txt = input('Enter Word To Search : ')

print('1. GOOGLE 2. YOUTUBE 3. WIKIPEDIA 4. BLOGGER 5. WIX')

website = input('Enter Website Name : ')

website.lower()


if(website=='google'):

wb.open('https://www.google.com/search?q='+txt)


if(website=='youtube'):

wb.open('https://www.youtube.com/results?search_query='+txt)


if(website=='wikipedia'):

wb.open('https://en.wikipedia.org/wiki/'+txt)


if(website=='blogger'):

wb.open('https://codecraze1998.blogspot.com/search?q='+txt)


if(website=='wix'):


#We can add more features in this code by our comfortless. I use these five webpages for running the code.


bottom of page