Luo Gu P1001 solution to a problem

This question should have it every OJ
This question is to find two numbers
on the code

#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
    cin>>a>>b;
    cout<<a+b;
    return 0;
}

Guess you like

Origin www.cnblogs.com/xmmlj/p/11779840.html