Skip to content

Instantly share code, notes, and snippets.

@ArefOrumiehei
Created December 5, 2024 11:17
Show Gist options
  • Save ArefOrumiehei/739b07a85d44e95a0f4216744a474b0a to your computer and use it in GitHub Desktop.
Save ArefOrumiehei/739b07a85d44e95a0f4216744a474b0a to your computer and use it in GitHub Desktop.
مشق امشب باقر
#include <iostream>
using namespace std;
int main(){
int x;
int y;
int z;
cin>>x>>y>>z;
if(x + y + z == 180 && (x != 0 && y != 0 && z != 0) ){
cout<<"Yes";
}else{
cout<<"No";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment