Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 306 Bytes

File metadata and controls

16 lines (12 loc) · 306 Bytes

C #include <bits/stdc++.h> using namespace std;

int main() { // your code goes here

long long a;
long long b;

cin >> a >> b;

cout << "a " << "+ " << "b " << "= " << a + b << endl;
cout << "a " << "* " << "b " << "= " << a * b << endl;
cout << "a " << "- " << "b " << "= " << a - b << endl;

}