// C program to find the greatest of two numbers
#include<stdio.h> int main() { //Fill the code int num1, num2; scanf(“%d %d”,&num1,&num2); if(num1 > num2) { printf(“%d is greater”,num1); } else { printf(“%d is greater”,num2); } return 0; }
// C program to find the greatest of two numbers
#include<stdio.h> int main() { //Fill the code int num1, num2; scanf(“%d %d”,&num1,&num2); if(num1 > num2) { printf(“%d is greater”,num1); } else { printf(“%d is greater”,num2); } return 0; }