MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/C++

หšโ‚Šโœฉโ€งโ‚Š [8393/Cpp] ํ•ฉ หšโ‚Šโœฉโ€งโ‚Š

HYEJU01 2021. 9. 6. 17:51
#include<iostream>
using namespace std;
int main(){
    int n;
    int a,hap = 0;
    cin >> n;
    for ( int i=1; i<=n; i++){
       hap += i;
    }
    cout << hap << endl;
return 0;
}