Untitled

 avatar
unknown
c_cpp
5 months ago
338 B
10
Indexable
#include <iostream>

using namespace std;

int main() {

    // int, long long
    // integers
    long long x, y;
    cin >> x >> y;

    cout << x << " + " << y << " = " << x + y << "\n";
    cout << x << " * " << y << " = " << x * y << "\n";
    cout << x << " - " << y << " = " << x - y << "\n";



    return 0;
}
Editor is loading...
Leave a Comment