You are on page 1of 2

Program 1:-

#include <iostream>
using namespace std;
int main()
{
cout<<"hello world!"<< endl;
return 0;
}

Code: -
Program 2:-

#include <iostream>
using namespace std;
int main()
{
int A;
int B;
int c;
A=56,B=45,c=A+B;
printf("sum = %d",c);
return 0;
}
Code: -

You might also like