write a program in C++ language to input any two number and find the product of both number if the product is let the hundred then display "Jesus" otherwise "Mary"
Answers
Answered by
0
Answer:
#include <iostream>
using namespace std;
int main()
{
int num1,num2;
cin>>num1>>num2;
if(num1*num2==100)
cout<<"Jesus";
else
cout<<"Marry";
return 0;
}
//Mark as brainliest please
Similar questions
Math,
22 hours ago
Environmental Sciences,
22 hours ago
English,
22 hours ago
Math,
1 day ago
Math,
8 months ago