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