Skip to content

Instantly share code, notes, and snippets.

@modos
Created July 16, 2022 01:29
Show Gist options
  • Save modos/4966b6cc3227e63f7fe36fc9fa1bb9dd to your computer and use it in GitHub Desktop.
Save modos/4966b6cc3227e63f7fe36fc9fa1bb9dd to your computer and use it in GitHub Desktop.
گزارش کار
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
int n,k;
cin >> n >> k;
int sum = 0;
for (int i = 0; i < n; i++) {
int temp;
cin >> temp;
sum += temp;
}
if (sum >= k){
cout << "YES";
}else {
cout << "NO";
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment