#include <stdio.h>
int main
{
    int a,b,c;
    printf("enter the first angle of  triangle");
    scanf("%d",&a);
    printf("enter second angle of triangle");
    scsnf("%d",&b);
    c=180-(a+b)
    printf("the third angle of %d,c");
    return 0;
}