tuanz

 avatar
unknown
c_cpp
4 years ago
266 B
5
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...