tuanz

Anonymous
c_cpp
08/29/2021 11:56 AM
356 B
37
Indexable
#include <iostream>
#include <iomanip>
#include <cmath>
#include <stdio.h>
using namespace std;
// which number is the largest
int main(){
    int a, b;
    cin >> a >> b;
    if(a>b){
        cout << a ;
    }else if (a<b){
        cout << b ;
    }
    return 0;
}
Editor is loading...