Computer Science, asked by singhsang8777055, 7 months ago

Computer project

1. Write a c ++ program to print " Stay Home, Stay Safe"

2. Write a program to find the addition of two numbers.​

Answers

Answered by mehermanoj76
3

Answer

1

#include<iostream.h>

void main( )

{

cout<<" Stay Home, Stay Safe";

}

2

#include<iostream.h>

void main( )

{

int a,b,c;

cout<<" \nenter two numbers";

cin>>a>>b;

c=a+b;

cout<<c;

}

Similar questions