Computer Science, asked by TREHANSINGHTHAKUR, 1 day ago

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 chotaraju39
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