English, asked by mohanteja5555, 8 months ago

Dora is in first grade. Her brother Darwin wants her sister to participate in Math Olympiad. Darwin gives two numbers to Dora. She has to tell the smallest number among them. Can you create a program for the same. Input should be two integers. in c++ program

Answers

Answered by rkkhanagwal72
0

Explanation:

uuuuekgtkrrfoecryeo को रसोई टी उप

Answered by manoj2425
9

Answer:

#include<iostream>

using namespace std;

int main()

{

 

 int a,b;

 cin>>a;

 cin>>b;

 if(a<b)

 {

   cout<<a<<" is smallest number";

 }

 else

 {

   cout<<b<<" is smallest number";

 }

}

Explanation:

Similar questions