Created
December 5, 2024 11:17
-
-
Save ArefOrumiehei/739b07a85d44e95a0f4216744a474b0a to your computer and use it in GitHub Desktop.
مشق امشب باقر
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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