#include<stdio.h>
int main()
{
    int a,b,c;
    printf("enter a:")
    scanf("%d",&a);
    printf("enter b:");
    scanf("%d",&b);
    if(a<0||b<0)
    {
        printf("Invalid input");
    }
    c=180-(a+b);
    {
        printf("the value of 3rd angle is")
    }
    return 0;
}